Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 947 Bytes

File metadata and controls

28 lines (21 loc) · 947 Bytes

JobReference

Properties

Name Type Description Notes
uid str [optional]
filename str [optional]

Example

from phrasetms_client.models.job_reference import JobReference

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

# convert the object into a dict
job_reference_dict = job_reference_instance.to_dict()
# create an instance of JobReference from a dict
job_reference_from_dict = JobReference.from_dict(job_reference_dict)

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