Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

OrderDiscountLinesResponse

Properties

Name Type Description Notes
has_more bool Indicates if there are more pages to be requested
object str Object type, in this case is list
data List[DiscountLinesDataResponse] [optional]

Example

from conekta.models.order_discount_lines_response import OrderDiscountLinesResponse

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

# convert the object into a dict
order_discount_lines_response_dict = order_discount_lines_response_instance.to_dict()
# create an instance of OrderDiscountLinesResponse from a dict
order_discount_lines_response_from_dict = OrderDiscountLinesResponse.from_dict(order_discount_lines_response_dict)

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