/** * 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. */ /** * The CompanyAddress object is used to represent a contact\'s or company\'s address. */ export declare class CompanyAddress { 'id'?: string; 'type'?: string; /** * Line 1 of the address\'s street. */ 'street1'?: string; /** * Line 2 of the address\'s street. */ 'street2'?: string; /** * The address\'s city. */ 'city'?: string; /** * The address\'s state or region. */ 'state'?: string; /** * Typically, this might just be \'state\' but used your field name to keep it consistent with the JSON */ 'countrySubdivision'?: string; /** * The address\'s country. */ 'country'?: string; /** * The address\'s zip code. */ 'zipCode'?: string; /** * Consider using google.protobuf.Timestamp if precise time manipulation is required */ 'modifiedAt'?: Date; 'createdAt'?: Date; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }