Type alias Client

Client: {
    address: string;
    company: Company;
    companyId: string;
    contactInfo: ContactInfo[];
    createdAt: string;
    id: string;
    isCompany: boolean;
    name: string;
}

Type declaration

  • address: string

    Address of the client

  • company: Company

    The company this client is associated with

  • companyId: string

    ID of the company this client belongs to

  • contactInfo: ContactInfo[]

    Client contact information (array of phone numbers and email addresses)

  • createdAt: string

    Date this client was created in our system

  • id: string

    ID of the client

  • isCompany: boolean

    Whether this client is a company or an individual

  • name: string

    Name of the client