Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.55 KB

DiscountSchemeCreateDto.md

File metadata and controls

29 lines (22 loc) · 1.55 KB

DiscountSchemeCreateDto

Properties

Name Type Description Notes
name str
rates DiscountSettingsDto [optional]
workflow_step_net_schemes List[NetRateSchemeWorkflowStepCreate] [optional]

Example

from phrasetms_client.models.discount_scheme_create_dto import DiscountSchemeCreateDto

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

# convert the object into a dict
discount_scheme_create_dto_dict = discount_scheme_create_dto_instance.to_dict()
# create an instance of DiscountSchemeCreateDto from a dict
discount_scheme_create_dto_from_dict = DiscountSchemeCreateDto.from_dict(discount_scheme_create_dto_dict)

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