| 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] |
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)