interface CustomerInfo {
    accounts?: Account[];
    address?: Address;
    birthDate: string;
    contactInfo?: ContactInformation;
    externalId?: string;
    firstName: string;
    id?: string;
    lastName: string;
    nationality: string;
    occupation: string;
    restrictions?: Restriction[];
    title?: string;
    type?: string;
}

Properties

accounts?: Account[]
address?: Address
birthDate: string
contactInfo?: ContactInformation
externalId?: string
firstName: string
id?: string
lastName: string
nationality: string
occupation: string
restrictions?: Restriction[]
title?: string
type?: string

Generated using TypeDoc