Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.46 KB

DiscountSchemeReference.md

File metadata and controls

31 lines (24 loc) · 1.46 KB

DiscountSchemeReference

Properties

Name Type Description Notes
id str [optional]
uid str [optional]
name str [optional]
date_created datetime [optional]
created_by UserReference [optional]

Example

from phrasetms_client.models.discount_scheme_reference import DiscountSchemeReference

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

# convert the object into a dict
discount_scheme_reference_dict = discount_scheme_reference_instance.to_dict()
# create an instance of DiscountSchemeReference from a dict
discount_scheme_reference_from_dict = DiscountSchemeReference.from_dict(discount_scheme_reference_dict)

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