Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

CustomerAntifraudInfo.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

CustomerAntifraudInfo

Properties

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

Example

from conekta.models.customer_antifraud_info import CustomerAntifraudInfo

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

# convert the object into a dict
customer_antifraud_info_dict = customer_antifraud_info_instance.to_dict()
# create an instance of CustomerAntifraudInfo from a dict
customer_antifraud_info_from_dict = CustomerAntifraudInfo.from_dict(customer_antifraud_info_dict)

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