Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

File metadata and controls

29 lines (20 loc) · 1.22 KB

PaymentFlowCaptureRequest

Properties

Name Type Description Notes
amount_to_capture int PaymentFlow から確定させる金額は、元の金額以下で指定します。指定されていない場合は、全額(`amount_capturable`)がデフォルトになります。 [optional]

Example

from payjpv2.models.payment_flow_capture_request import PaymentFlowCaptureRequest

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

# convert the object into a dict
payment_flow_capture_request_dict = payment_flow_capture_request_instance.to_dict()
# create an instance of PaymentFlowCaptureRequest from a dict
payment_flow_capture_request_from_dict = PaymentFlowCaptureRequest.from_dict(payment_flow_capture_request_dict)

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