Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

SegmentSingleRequestSchema

Properties

Name Type Description Notes
id str Segment ID.

Example

from cloudbeds_pms.models.segment_single_request_schema import SegmentSingleRequestSchema

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

# convert the object into a dict
segment_single_request_schema_dict = segment_single_request_schema_instance.to_dict()
# create an instance of SegmentSingleRequestSchema from a dict
segment_single_request_schema_from_dict = SegmentSingleRequestSchema.from_dict(segment_single_request_schema_dict)

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