/** * 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 { AddressType } from './addressType'; import { AddressableType } from './addressableType'; export declare class Address { /** * Unique identifier for the address. */ 'id'?: string; /** * Full address line. Must be at least 5 characters long. */ 'address'?: string; /** * Unit number, if applicable (e.g., apartment). */ 'unit'?: string; /** * Zip code, must be exactly 5 characters. */ 'zipcode'?: string; /** * City name, must be at least 3 characters long. */ 'city'?: string; /** * State or municipality, must be at least 2 characters long. */ 'state'?: string; /** * Longitude coordinate. Can be empty. */ 'longitude'?: string; /** * Latitude coordinate. Can be empty. */ 'latitude'?: string; 'addressableType'?: AddressableType; /** * Indicates if this is the primary address for the entity. */ 'isPrimary'?: boolean; 'addressType'?: AddressType; /** * Metadata in JSON format. */ 'metadata'?: object; /** * Timestamp when the address was created. */ 'createdAt'?: Date; /** * Timestamp when the address was last updated. */ 'updatedAt'?: Date; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Address { }