/** * 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'; import { PurchaseOrderLineItem } from './purchaseOrderLineItem'; /** * The PurchaseOrder object is a record of request for a product or service between a buyer and seller. */ export declare class PurchaseOrder { 'id'?: string; 'mergeRecordId'?: string; 'status'?: string; /** * The purchase order\'s issue date. */ 'issueDate'?: Date; /** * The human-readable number of the purchase order. */ 'purchaseOrderNumber'?: string; /** * The purchase order\'s delivery date. */ 'deliveryDate'?: Date; 'deliveryAddress'?: CompanyAddress; /** * The contact making the purchase order. */ 'customer'?: string; /** * The party fulfilling the purchase order. */ 'vendor'?: string; /** * A memo attached to the purchase order. */ 'memo'?: string; /** * The company the purchase order belongs to. */ 'company'?: string; /** * The purchase order\'s total amount. Might be better as double. */ 'totalAmount'?: number; /** * The purchase order\'s currency. */ 'currency'?: string; /** * Assuming string, but might be better as float or double. */ 'exchangeRate'?: string; 'lineItems'?: Array; 'trackingCategories'?: Array; 'remoteCreatedAt'?: Date; 'remoteUpdatedAt'?: Date; 'remoteWasDeleted'?: boolean; /** * The accounting period that the PurchaseOrder was generated in. */ 'accountingPeriod'?: string; 'remoteId'?: string; '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; }[]; }