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, e.g. bbva_cash_in, cash_in, pespay_cash_in, etc.
[optional]
service_name
str
[optional]
store
str
[optional]
store_name
str
[optional]
customer_ip_address
str
[optional]
account_type
str
Account type of the card
[optional]
brand
str
Brand of the card
[optional]
contract_id
str
Id sent for recurrent charges.
[optional]
country
str
Country of the card
[optional]
exp_month
str
Expiration month of the card
[optional]
exp_year
str
Expiration year of the card
[optional]
fraud_indicators
List[object]
[optional]
issuer
str
Issuer of the card
[optional]
last4
str
Last 4 digits of the card
[optional]
name
str
Name of the cardholder
[optional]
bank
str
[optional]
clabe
str
[optional]
description
str
[optional]
executed_at
int
[optional]
issuing_account_bank
str
[optional]
issuing_account_number
str
[optional]
issuing_account_holder_name
str
[optional]
issuing_account_tax_id
str
[optional]
payment_attempts
List[object]
[optional]
receiving_account_holder_name
str
[optional]
receiving_account_number
str
[optional]
receiving_account_bank
str
[optional]
receiving_account_tax_id
str
[optional]
reference_number
str
[optional]
tracking_code
str
[optional]
Example
fromconekta.models.charge_order_response_payment_methodimportChargeOrderResponsePaymentMethod# TODO update the JSON string belowjson="{}"# create an instance of ChargeOrderResponsePaymentMethod from a JSON stringcharge_order_response_payment_method_instance=ChargeOrderResponsePaymentMethod.from_json(json)
# print the JSON string representation of the objectprint(ChargeOrderResponsePaymentMethod.to_json())
# convert the object into a dictcharge_order_response_payment_method_dict=charge_order_response_payment_method_instance.to_dict()
# create an instance of ChargeOrderResponsePaymentMethod from a dictcharge_order_response_payment_method_from_dict=ChargeOrderResponsePaymentMethod.from_dict(charge_order_response_payment_method_dict)