/* Options: Date: 2025-09-22 22:20:20 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPurchaseOrders.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class PurchaseOrderDto { public id: number; public userId: string; public createdDate: string; public paymentType: string; public void: boolean; public paid: boolean; public transactionIdentifier: string; public couponCode: string; public orderItems: PurchaseOrderItem[]; public payer: string; public billingAddressLine1: string; public billingAddressCity: string; public billingAddressState: string; public billingAddressPostalCode: string; public billingAddressCountryCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetPurchaseOrdersResponse { public results: PurchaseOrderDto[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/purchaseorders", "GET") export class GetPurchaseOrders implements IReturn { public userId: string; public fromDate?: string; public toDate?: string; public void?: boolean; public paid?: boolean; public transactionIdentifier: string; public couponCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPurchaseOrders'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPurchaseOrdersResponse(); } }