Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

SegmentDefaultRequestSchema

Properties

Name Type Description Notes
id str Segment ID.

Example

from cloudbeds_pms.models.segment_default_request_schema import SegmentDefaultRequestSchema

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

# convert the object into a dict
segment_default_request_schema_dict = segment_default_request_schema_instance.to_dict()
# create an instance of SegmentDefaultRequestSchema from a dict
segment_default_request_schema_from_dict = SegmentDefaultRequestSchema.from_dict(segment_default_request_schema_dict)

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