Type alias UpdateCompanyResponse

UpdateCompanyResponse: {
    data: CompanyResponse;
    errors: string[];
    success: boolean;
}

Type declaration

  • data: CompanyResponse

    For non-error scenarios, holds the API response data

  • errors: string[]

    If the operation was not successful, holds the deatils of errors

  • success: boolean

    Indicates whether the operation was successful or not