Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.22 KB

AnalyseJobDto.md

File metadata and controls

30 lines (23 loc) · 1.22 KB

AnalyseJobDto

Properties

Name Type Description Notes
uid str [optional]
filename str [optional]
data DataDtoV1 [optional]
discounted_data DataDtoV1 [optional]

Example

from phrasetms_client.models.analyse_job_dto import AnalyseJobDto

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

# convert the object into a dict
analyse_job_dto_dict = analyse_job_dto_instance.to_dict()
# create an instance of AnalyseJobDto from a dict
analyse_job_dto_from_dict = AnalyseJobDto.from_dict(analyse_job_dto_dict)

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