Type alias CreateCompanyData

CreateCompanyData: {
    address: string;
    addressLine2: string;
    city: string;
    contactInfo: ContactInfo[];
    country: string;
    defaultCurrencyCode?: string;
    industry?: string;
    logo: Record<string, any>;
    name: string;
    state: string;
    taxRegistrationCertificate: Record<string, any>;
    taxRegistrations: TaxRegistration[];
}

Type declaration

  • address: string

    Registered business address line 1

  • addressLine2: string

    Registered business address line 2

  • city: string

    City in which the company is registered

  • contactInfo: ContactInfo[]

    List of contacts in the company

  • country: string

    Country in which the company is registered

  • Optional defaultCurrencyCode?: string

    Default currency code for the company

  • Optional industry?: string

    Industry the company operates in

  • logo: Record<string, any>

    Company logo file (JPEG or PNG, max 2MB)

  • name: string

    Name of the company

  • state: string

    State in which the company is registered

  • taxRegistrationCertificate: Record<string, any>

    Company tax registration certificate file (PDF, max 2MB)

  • taxRegistrations: TaxRegistration[]

    Registered tax details of the company