Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.21 KB

SetFinancialSettingsDto.md

File metadata and controls

28 lines (21 loc) · 1.21 KB

SetFinancialSettingsDto

Properties

Name Type Description Notes
net_rate_scheme IdReference [optional]
price_list IdReference [optional]

Example

from phrasetms_client.models.set_financial_settings_dto import SetFinancialSettingsDto

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

# convert the object into a dict
set_financial_settings_dto_dict = set_financial_settings_dto_instance.to_dict()
# create an instance of SetFinancialSettingsDto from a dict
set_financial_settings_dto_from_dict = SetFinancialSettingsDto.from_dict(set_financial_settings_dto_dict)

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