Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.16 KB

File metadata and controls

31 lines (23 loc) · 1.16 KB

OrderResponseCharges

The charges associated with the order

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[ChargesDataResponse] [optional]

Example

from conekta.models.order_response_charges import OrderResponseCharges

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

# convert the object into a dict
order_response_charges_dict = order_response_charges_instance.to_dict()
# create an instance of OrderResponseCharges from a dict
order_response_charges_form_dict = order_response_charges.from_dict(order_response_charges_dict)

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