package model // ResponseListStaffInfoByNotificationAction ... type ResponseListStaffInfoByNotificationAction struct { CreatedBys []ResponseStaffInfo `json:"CreatedBys"` ApprovedBys []ResponseStaffInfo `json:"ApprovedBys"` CancelledBys []ResponseStaffInfo `json:"CancelledBys"` } // ResponseStaffInfo ... type ResponseStaffInfo struct { ID string `json:"_id"` Name string `json:"name"` }