Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

CustomerAntifraudInfoResponse.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

CustomerAntifraudInfoResponse

Properties

Name Type Description Notes
first_paid_at int [optional]
account_created_at int [optional]

Example

from conekta.models.customer_antifraud_info_response import CustomerAntifraudInfoResponse

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

# convert the object into a dict
customer_antifraud_info_response_dict = customer_antifraud_info_response_instance.to_dict()
# create an instance of CustomerAntifraudInfoResponse from a dict
customer_antifraud_info_response_from_dict = CustomerAntifraudInfoResponse.from_dict(customer_antifraud_info_response_dict)

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