Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.4 KB

SegmentsCountsResponseDto.md

File metadata and controls

29 lines (22 loc) · 1.4 KB

SegmentsCountsResponseDto

Properties

Name Type Description Notes
job_part_uid str [optional]
counts SegmentsCountsDto [optional]
previous_workflow PreviousWorkflowDto [optional]

Example

from phrasetms_client.models.segments_counts_response_dto import SegmentsCountsResponseDto

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

# convert the object into a dict
segments_counts_response_dto_dict = segments_counts_response_dto_instance.to_dict()
# create an instance of SegmentsCountsResponseDto from a dict
segments_counts_response_dto_from_dict = SegmentsCountsResponseDto.from_dict(segments_counts_response_dto_dict)

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