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] | |
vendor_owner | USER | [optional] | |
vendor | VendorReference | [optional] |
from phrasetms_client.models.buyer import Buyer
# TODO update the JSON string below
json = "{}"
# create an instance of Buyer from a JSON string
buyer_instance = Buyer.from_json(json)
# print the JSON string representation of the object
print Buyer.to_json()
# convert the object into a dict
buyer_dict = buyer_instance.to_dict()
# create an instance of Buyer from a dict
buyer_from_dict = Buyer.from_dict(buyer_dict)