/** * 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 Contact object refers to either a supplier or a customer. */ export declare class Contacts { 'id'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; /** * The contact\'s name. */ 'name'?: string; /** * Whether the contact is a supplier. */ 'isSupplier'?: boolean; /** * Whether the contact is a customer. */ 'isCustomer'?: boolean; /** * The contact\'s email address. */ 'emailAddress'?: string; /** * The contact\'s tax number. */ 'taxNumber'?: string; 'status'?: string; /** * The currency the contact\'s transactions are in. */ 'currency'?: string; /** * When the third party\'s contact was updated. Consider using google.protobuf.Timestamp */ 'remoteUpdatedAt'?: Date; /** * The company the contact belongs to. */ 'company'?: string; /** * Address object IDs for the given Contacts object. These are IDs, not the Address structure itself */ 'addressesIds'?: Array; 'phoneNumbers'?: Array; /** * Indicates whether or not this object has been deleted by third party webhooks. */ 'remoteWasDeleted'?: boolean; /** * Consider using google.protobuf.Timestamp */ 'modifiedAt'?: Date; 'mergeRecordId'?: string; '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; }[]; }