Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.93 KB

VendorAllOf.md

File metadata and controls

46 lines (38 loc) · 1.93 KB

VendorAllOf

Properties

Name Type Description Notes
shared bool Default: false [optional]
progress ProgressDto [optional]
client ClientReference [optional]
cost_center CostCenterReference [optional]
business_unit BusinessUnitReference [optional]
date_due datetime [optional]
status str [optional]
purchase_order str [optional]
is_published_on_job_board bool Default: false [optional]
note str [optional]
created_by UserReference [optional]
quality_assurance_settings object [optional]
workflow_steps List[ProjectWorkflowStepDto] [optional]
analyse_settings object [optional]
access_settings object [optional]
financial_settings object [optional]
archived bool [optional]
buyer_owner USER [optional]
buyer BuyerReference [optional]

Example

from phrasetms_client.models.vendor_all_of import VendorAllOf

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

# convert the object into a dict
vendor_all_of_dict = vendor_all_of_instance.to_dict()
# create an instance of VendorAllOf from a dict
vendor_all_of_from_dict = VendorAllOf.from_dict(vendor_all_of_dict)

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