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
Product type of the payment method, use for the payment method to know the product type
cancel_url
str
URL to redirect the customer after a canceled payment
can_not_expire
bool
Indicates if the payment method can not expire
failure_url
str
URL to redirect the customer after a failed payment
success_url
str
URL to redirect the customer after a successful payment
cvc
str
Optional, It is a value that allows identifying the security code of the card. Only for PCI merchants
exp_month
str
Card expiration month
exp_year
str
Card expiration year
name
str
Cardholder name
number
str
Card number
customer_ip_address
str
Optional field used to capture the customer's IP address for fraud prevention and security monitoring purposes
[optional]
monthly_installments
int
How many months without interest to apply, it can be 3, 6, 9, 12 or 18
[optional]
token_id
str
[optional]
payment_source_id
str
[optional]
contract_id
str
Optional id sent to indicate the bank contract for recurrent card charges.
[optional]
Example
fromconekta.models.charge_request_payment_methodimportChargeRequestPaymentMethod# TODO update the JSON string belowjson="{}"# create an instance of ChargeRequestPaymentMethod from a JSON stringcharge_request_payment_method_instance=ChargeRequestPaymentMethod.from_json(json)
# print the JSON string representation of the objectprint(ChargeRequestPaymentMethod.to_json())
# convert the object into a dictcharge_request_payment_method_dict=charge_request_payment_method_instance.to_dict()
# create an instance of ChargeRequestPaymentMethod from a dictcharge_request_payment_method_from_dict=ChargeRequestPaymentMethod.from_dict(charge_request_payment_method_dict)