Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.16 KB

File metadata and controls

28 lines (20 loc) · 1.16 KB

OrderResponseDiscountLinesAllOf

Properties

Name Type Description Notes
data List[DiscountLinesDataResponse] [optional]

Example

from conekta.models.order_response_discount_lines_all_of import OrderResponseDiscountLinesAllOf

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

# convert the object into a dict
order_response_discount_lines_all_of_dict = order_response_discount_lines_all_of_instance.to_dict()
# create an instance of OrderResponseDiscountLinesAllOf from a dict
order_response_discount_lines_all_of_form_dict = order_response_discount_lines_all_of.from_dict(order_response_discount_lines_all_of_dict)

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