Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

AssignedTimeOffPolicyV11

Properties

Name Type Description Notes
time_off_policy_id int The ID of the assigned time off policy. [optional]
time_off_type_id int The ID of the time off type. [optional]
accrual_start_date date The date accruals started in YYYY-MM-DD format. Null for manual and unlimited policy types. [optional]

Example

from bamboohr_sdk.models.assigned_time_off_policy_v11 import AssignedTimeOffPolicyV11

# TODO update the JSON string below
json = "{}"
# create an instance of AssignedTimeOffPolicyV11 from a JSON string
assigned_time_off_policy_v11_instance = AssignedTimeOffPolicyV11.from_json(json)
# print the JSON string representation of the object
print(AssignedTimeOffPolicyV11.to_json())

# convert the object into a dict
assigned_time_off_policy_v11_dict = assigned_time_off_policy_v11_instance.to_dict()
# create an instance of AssignedTimeOffPolicyV11 from a dict
assigned_time_off_policy_v11_from_dict = AssignedTimeOffPolicyV11.from_dict(assigned_time_off_policy_v11_dict)

[Back to Model list] [Back to API list] [Back to README]