Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 961 Bytes

OrderCaptureRequest.md

File metadata and controls

29 lines (20 loc) · 961 Bytes

OrderCaptureRequest

Properties

Name Type Description Notes
amount int Amount to capture

Example

from conekta.models.order_capture_request import OrderCaptureRequest

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

# convert the object into a dict
order_capture_request_dict = order_capture_request_instance.to_dict()
# create an instance of OrderCaptureRequest from a dict
order_capture_request_from_dict = OrderCaptureRequest.from_dict(order_capture_request_dict)

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