Type alias CreateClientPayload

CreateClientPayload: {
    address?: string;
    addressLine2?: string;
    city: string;
    contactInfo?: ContactInfo[];
    country: string;
    isCompany?: boolean;
    name: string;
    state: string;
    taxRegistrationNumber?: string;
    zipCode: string;
}

Type declaration

  • Optional address?: string

    Address of the client

  • Optional addressLine2?: string

    Secondary address line of the client

  • city: string

    City of the client

  • Optional contactInfo?: ContactInfo[]

    Contact info of the client (array of phone numbers and email addresses)

  • country: string

    Country of the client

  • Optional isCompany?: boolean

    Client is a company

  • name: string

    Name of the client is required

  • state: string

    State of the client

  • Optional taxRegistrationNumber?: string

    Tax registration number of the client

  • zipCode: string

    ZIP/Postal code of the client