Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.8 KB

File metadata and controls

37 lines (28 loc) · 1.8 KB

PolicyExceptionIntervalSchema

Properties

Name Type Description Notes
start_date date Start date of the interval.
end_date date End date of the interval.
day0 bool 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

from cloudbeds_pms.models.policy_exception_interval_schema import PolicyExceptionIntervalSchema

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

# convert the object into a dict
policy_exception_interval_schema_dict = policy_exception_interval_schema_instance.to_dict()
# create an instance of PolicyExceptionIntervalSchema from a dict
policy_exception_interval_schema_from_dict = PolicyExceptionIntervalSchema.from_dict(policy_exception_interval_schema_dict)

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