Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 874 Bytes

File metadata and controls

30 lines (21 loc) · 874 Bytes

Discount

Properties

Name Type Description Notes
type DiscountType [optional]
value int [optional]

Example

from clientapi_billingo.models.discount import Discount

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

# convert the object into a dict
discount_dict = discount_instance.to_dict()
# create an instance of Discount from a dict
discount_from_dict = Discount.from_dict(discount_dict)

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