Name | Type | Description | Notes |
---|---|---|---|
segments | List[JobSegmentDto] | [optional] |
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)