Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 2 KB

File metadata and controls

35 lines (28 loc) · 2 KB

QuoteCreateV2Dto

Properties

Name Type Description Notes
name str
project UidReference
analyse IdReference
price_list IdReference
net_rate_scheme IdReference [optional]
provider ProviderReference [optional]
workflow_settings List[QuoteWorkflowSettingDto] [optional]
units List[QuoteUnitsDto] [optional]
additional_steps List[str] [optional]

Example

from phrasetms_client.models.quote_create_v2_dto import QuoteCreateV2Dto

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

# convert the object into a dict
quote_create_v2_dto_dict = quote_create_v2_dto_instance.to_dict()
# create an instance of QuoteCreateV2Dto from a dict
quote_create_v2_dto_from_dict = QuoteCreateV2Dto.from_dict(quote_create_v2_dto_dict)

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