Source code for worldline.connect.sdk.v1.domain.customer_account_risk_assessment
# -*- coding: utf-8 -*-
#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from typing import Optional
from worldline.connect.sdk.domain.data_object import DataObject
[docs]
class CustomerAccountRiskAssessment(DataObject):
"""
| Object containing data related to the account the customer has with you
"""
__has_forgotten_password: Optional[bool] = None
__has_password: Optional[bool] = None
@property
def has_forgotten_password(self) -> Optional[bool]:
"""
| Specifies if the customer (initially) had forgotten their password
* true - The customer has forgotten their password
* false - The customer has not forgotten their password
Type: bool
"""
return self.__has_forgotten_password
@has_forgotten_password.setter
def has_forgotten_password(self, value: Optional[bool]) -> None:
self.__has_forgotten_password = value
@property
def has_password(self) -> Optional[bool]:
"""
| Specifies if the customer entered a password to gain access to an account registered with the you
* true - The customer has used a password to gain access
* false - The customer has not used a password to gain access
Type: bool
"""
return self.__has_password
@has_password.setter
def has_password(self, value: Optional[bool]) -> None:
self.__has_password = value
[docs]
def to_dictionary(self) -> dict:
dictionary = super(CustomerAccountRiskAssessment, self).to_dictionary()
if self.has_forgotten_password is not None:
dictionary['hasForgottenPassword'] = self.has_forgotten_password
if self.has_password is not None:
dictionary['hasPassword'] = self.has_password
return dictionary
[docs]
def from_dictionary(self, dictionary: dict) -> 'CustomerAccountRiskAssessment':
super(CustomerAccountRiskAssessment, self).from_dictionary(dictionary)
if 'hasForgottenPassword' in dictionary:
self.has_forgotten_password = dictionary['hasForgottenPassword']
if 'hasPassword' in dictionary:
self.has_password = dictionary['hasPassword']
return self