/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CustomerAccountInfo */ export interface CustomerAccountInfo { /** * Additional information about the account optionally provided by the 3-D Secure Requestor * @type {string} * @memberof CustomerAccountInfo */ customerAccountId?: string; /** * The number of customer transactions made over the last six months (last 180 days) * @type {string} * @memberof CustomerAccountInfo */ numberOfPurchase180Days?: string; /** * Number of accepted or abandoned transactions in the last year on the customer account * @type {string} * @memberof CustomerAccountInfo */ numberOfTransactionYear?: string; /** * The customer account creation date. Format: YYYY/MM/DD * @type {string} * @memberof CustomerAccountInfo */ customerAccountCreationDate?: string; /** * The number of add card attempts in 24 hours * @type {string} * @memberof CustomerAccountInfo */ numberOfAttemptsAddCard24Hours?: string; /** * Specifies whether a suspicious activity is detected on customer account. Possible values: true or false. * @type {string} * @memberof CustomerAccountInfo */ suspiciousActivityIndicator?: string; /** * Number of abandoned or successful transactions in the last 24 hours on the customer account * @type {string} * @memberof CustomerAccountInfo */ numberOfTransaction24Hours?: string; /** * Last date the customer account was changed. Format: YYYY/MM/DD * @type {string} * @memberof CustomerAccountInfo */ customerAccountChangeDate?: string; /** * Date of last change of password of the customer account. Format: YYYY/MM/DD * @type {string} * @memberof CustomerAccountInfo */ passwordChangeDate?: string; /** * Date of last added form of payment made to account. For example a new card registered to the account. Format: YYYY/MM/DD * @type {string} * @memberof CustomerAccountInfo */ addPaymentMeanDate?: string; } /** * Check if a given object implements the CustomerAccountInfo interface. */ export declare function instanceOfCustomerAccountInfo(value: object): boolean; export declare function CustomerAccountInfoFromJSON(json: any): CustomerAccountInfo; export declare function CustomerAccountInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerAccountInfo; export declare function CustomerAccountInfoToJSON(value?: CustomerAccountInfo | null): any;