Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

UpdateCustomerAntifraudInfo

Properties

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

Example

from conekta.models.update_customer_antifraud_info import UpdateCustomerAntifraudInfo

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

# convert the object into a dict
update_customer_antifraud_info_dict = update_customer_antifraud_info_instance.to_dict()
# create an instance of UpdateCustomerAntifraudInfo from a dict
update_customer_antifraud_info_from_dict = UpdateCustomerAntifraudInfo.from_dict(update_customer_antifraud_info_dict)

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