You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Array of employee IDs to assign to the break policy
Example
frombamboohr_sdk.models.assign_employees_to_break_policy_requestimportAssignEmployeesToBreakPolicyRequest# TODO update the JSON string belowjson="{}"# create an instance of AssignEmployeesToBreakPolicyRequest from a JSON stringassign_employees_to_break_policy_request_instance=AssignEmployeesToBreakPolicyRequest.from_json(json)
# print the JSON string representation of the objectprint(AssignEmployeesToBreakPolicyRequest.to_json())
# convert the object into a dictassign_employees_to_break_policy_request_dict=assign_employees_to_break_policy_request_instance.to_dict()
# create an instance of AssignEmployeesToBreakPolicyRequest from a dictassign_employees_to_break_policy_request_from_dict=AssignEmployeesToBreakPolicyRequest.from_dict(assign_employees_to_break_policy_request_dict)