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] |
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)