Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.01 KB

SegmentListDto.md

File metadata and controls

27 lines (20 loc) · 1.01 KB

SegmentListDto

Properties

Name Type Description Notes
segments List[JobSegmentDto] [optional]

Example

from phrasetms_client.models.segment_list_dto import SegmentListDto

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

# convert the object into a dict
segment_list_dto_dict = segment_list_dto_instance.to_dict()
# create an instance of SegmentListDto from a dict
segment_list_dto_from_dict = SegmentListDto.from_dict(segment_list_dto_dict)

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