Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.54 KB

File metadata and controls

38 lines (30 loc) · 1.54 KB

ChargeDataPaymentMethodCardResponse

use for card responses

Properties

Name Type Description Notes
account_type str [optional]
auth_code str [optional]
brand str [optional]
country str [optional]
exp_month str [optional]
exp_year str [optional]
fraud_indicators List[object] [optional]
issuer str [optional]
last4 str [optional]
name str [optional]

Example

from conekta.models.charge_data_payment_method_card_response import ChargeDataPaymentMethodCardResponse

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

# convert the object into a dict
charge_data_payment_method_card_response_dict = charge_data_payment_method_card_response_instance.to_dict()
# create an instance of ChargeDataPaymentMethodCardResponse from a dict
charge_data_payment_method_card_response_form_dict = charge_data_payment_method_card_response.from_dict(charge_data_payment_method_card_response_dict)

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