/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CompanyAddress } from './companyAddress'; /** * The CompanyInfo object is used to represent a company\'s information. */ export declare class CompanyInfo { 'id'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; /** * The company\'s name. */ 'name'?: string; /** * The company\'s legal name. */ 'legalName'?: string; /** * The company\'s tax number. */ 'taxNumber'?: string; /** * The company\'s fiscal year end month. */ 'fiscalYearEndMonth'?: number; /** * The company\'s fiscal year end day. */ 'fiscalYearEndDay'?: number; /** * The currency set in the company\'s accounting platform. */ 'currency'?: string; /** * When the third party\'s company was created. Consider using google.protobuf.Timestamp */ 'remoteCreatedAt'?: Date; /** * The company\'s urls. */ 'urls'?: Array; 'addresses'?: Array; 'phoneNumbers'?: Array; /** * Indicates whether or not this object has been deleted by third party webhooks. */ 'remoteWasDeleted'?: boolean; 'modifiedAt'?: Date; 'mergeRecordId'?: string; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }