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
Sunday (day 0) -- apply exception on this day of the week.
[optional]
day1
bool
Monday (day 1) -- apply exception on this day of the week.
[optional]
day2
bool
Tuesday (day 2) -- apply exception on this day of the week.
[optional]
day3
bool
Wednesday (day 3) -- apply exception on this day of the week.
[optional]
day4
bool
Thursday (day 4) -- apply exception on this day of the week.
[optional]
day5
bool
Friday (day 5) -- apply exception on this day of the week.
[optional]
day6
bool
Saturday (day 6) -- apply exception on this day of the week.
[optional]
Example
fromcloudbeds_pms.models.policy_exception_interval_schemaimportPolicyExceptionIntervalSchema# TODO update the JSON string belowjson="{}"# create an instance of PolicyExceptionIntervalSchema from a JSON stringpolicy_exception_interval_schema_instance=PolicyExceptionIntervalSchema.from_json(json)
# print the JSON string representation of the objectprint(PolicyExceptionIntervalSchema.to_json())
# convert the object into a dictpolicy_exception_interval_schema_dict=policy_exception_interval_schema_instance.to_dict()
# create an instance of PolicyExceptionIntervalSchema from a dictpolicy_exception_interval_schema_from_dict=PolicyExceptionIntervalSchema.from_dict(policy_exception_interval_schema_dict)