Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 2.19 KB

NetRateScheme.md

File metadata and controls

34 lines (27 loc) · 2.19 KB

NetRateScheme

Properties

Name Type Description Notes
id str [optional]
uid str [optional]
name str [optional]
organization OrganizationReference [optional]
date_created datetime [optional]
created_by UserReference [optional]
workflow_step_net_schemes List[NetRateSchemeWorkflowStepReference] [optional]
rates DiscountSettingsDto [optional]

Example

from phrasetms_client.models.net_rate_scheme import NetRateScheme

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

# convert the object into a dict
net_rate_scheme_dict = net_rate_scheme_instance.to_dict()
# create an instance of NetRateScheme from a dict
net_rate_scheme_from_dict = NetRateScheme.from_dict(net_rate_scheme_dict)

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