Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.22 KB

QuoteWorkflowSettingDto.md

File metadata and controls

28 lines (21 loc) · 1.22 KB

QuoteWorkflowSettingDto

Properties

Name Type Description Notes
workflow_step IdReference
units List[QuoteUnitsDto] [optional]

Example

from phrasetms_client.models.quote_workflow_setting_dto import QuoteWorkflowSettingDto

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

# convert the object into a dict
quote_workflow_setting_dto_dict = quote_workflow_setting_dto_instance.to_dict()
# create an instance of QuoteWorkflowSettingDto from a dict
quote_workflow_setting_dto_from_dict = QuoteWorkflowSettingDto.from_dict(quote_workflow_setting_dto_dict)

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