You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unique ID or number of an invoice. For example, `4a8082e65b27f6c3015b89e4344c16b1`, or `INV00000003`.
payment_method_id
str
The ID of the payment method you want to use. If not provided, the default payment method of the customer account is used.
[optional]
payment_gateway_id
str
The ID of the payment gateway instance you want to use. If not provided, the default payment gateway instance of the customer account is used.
[optional]
Example
fromzuora_sdk.models.create_payment_predebit_notify_requestimportCreatePaymentPredebitNotifyRequest# TODO update the JSON string belowjson="{}"# create an instance of CreatePaymentPredebitNotifyRequest from a JSON stringcreate_payment_predebit_notify_request_instance=CreatePaymentPredebitNotifyRequest.from_json(json)
# print the JSON string representation of the objectprint(CreatePaymentPredebitNotifyRequest.to_json())
# convert the object into a dictcreate_payment_predebit_notify_request_dict=create_payment_predebit_notify_request_instance.to_dict()
# create an instance of CreatePaymentPredebitNotifyRequest from a dictcreate_payment_predebit_notify_request_from_dict=CreatePaymentPredebitNotifyRequest.from_dict(create_payment_predebit_notify_request_dict)