@paysafe/paysafe-wallet-saas-web
    Preparing search index...

    Interface CustomerInfo

    Represents customer information.

    interface CustomerInfo {
        accounts?: Account[];
        additionalAttributes?: Record<string, string>;
        address?: Address;
        auth?: Token;
        birthDate: string;
        contactInfo?: ContactInformation;
        externalId?: string;
        firstName: string;
        id?: string;
        incompleteAttributes?: IncompleteAttribute[];
        lastName: string;
        nationality?: string;
        occupation?: Occupation;
        preferences?: Preferences;
        restrictions?: UserRestriction[];
        serviceLevel?: number;
        title?: string;
        type?: string;
        userCategory?: string;
        vulnerabilities?: Vulnerability[];
    }
    Index

    Properties

    accounts?: Account[]

    Accounts associated with this customer.

    additionalAttributes?: Record<string, string>

    Additional attributes associated with this customer.

    address?: Address

    Address of the customer.

    auth?: Token

    Auto-login auth token.

    birthDate: string

    Date of birth.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2024-05-23"
    
    contactInfo?: ContactInformation

    Contact information.

    externalId?: string

    External identifier in merchant system. Must be passed during onboarding.

    firstName: string

    First name.

    id?: string

    Paysafe embedded wallet internal identifier.

    incompleteAttributes?: IncompleteAttribute[]

    Incomplete attributes associated with this customer.

    lastName: string

    Last name.

    nationality?: string

    Nationality. Represents ISO-3166 Alpha 2 country code.

    "GB"
    
    occupation?: Occupation

    Occupation.

    preferences?: Preferences

    Preferences associated with this customer.

    restrictions?: UserRestriction[]

    Restrictions placed on the customer.

    serviceLevel?: number

    Customer's service level.

    title?: string

    Personal title.

    "Mr.", "Ms" "Dr."
    
    type?: string

    Type of the customer.

    userCategory?: string

    User category associated with this customer.

    vulnerabilities?: Vulnerability[]

    Vulnerabilities associated with this customer.