Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 3.39 KB

File metadata and controls

44 lines (35 loc) · 3.39 KB

PayerAccountInformation

Properties

Name Type Description Notes
account_id str A unique ID of the payer's account in the merchant's system. [optional]
account_created datetime The timestamp when the payer created its account in UTC. [optional]
account_creation_indicator str Enumeration indicating when the payer's account was created. [optional]
account_last_changed datetime The timestamp when the payer last changed its account in UTC. [optional]
account_change_indicator str Enumeration indicating how long ago the payer's account was last changed. [optional]
password_last_changed datetime The timestamp when the payer last changed its password in UTC. [optional]
password_change_indicator str Enumeration indicating how long ago the payer's password was last changed. [optional]
purchases_in_the_last6_months int The number of successful purchases of the payer in the last 6 months. [optional]
shipping_address_added datetime The timestamp when the shipping address used for this payment was added to the payer's account in UTC. [optional]
shipping_address_usage_indicator str Enumeration indicating how long ago the shipping address was added to the payer's account. [optional]
provision_attempts int How many times the customer tried to add a card to its account during the last 24 hours. [optional]
transactional_activity_per_day int The number of purchases attached to this payer in the last 24 hours. [optional]
transactional_activity_per_year int The number of purchases attached to this payer in the last 365 days. [optional]
payment_method_added datetime When this card was added to the payer's account in UTC. [optional]
payment_method_indicator str This enum indicates when had the payer added the card to it's account. ⚠️ NOTE ⚠️: This parameter is missing from the official documentation, but it is in the example code and I managed to find the page for it. [optional]
suspicious_activity_indicator str Enumeration indicating whether there was any suspicious activity regarding the payer. [optional]

Example

from clientapi_barion.models.payer_account_information import PayerAccountInformation

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

# convert the object into a dict
payer_account_information_dict = payer_account_information_instance.to_dict()
# create an instance of PayerAccountInformation from a dict
payer_account_information_from_dict = PayerAccountInformation.from_dict(payer_account_information_dict)

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