Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1000 Bytes

JobPartsDto.md

File metadata and controls

27 lines (20 loc) · 1000 Bytes

JobPartsDto

Properties

Name Type Description Notes
jobs List[JobPartReference] [optional]

Example

from phrasetms_client.models.job_parts_dto import JobPartsDto

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

# convert the object into a dict
job_parts_dto_dict = job_parts_dto_instance.to_dict()
# create an instance of JobPartsDto from a dict
job_parts_dto_from_dict = JobPartsDto.from_dict(job_parts_dto_dict)

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