/* Options: Date: 2025-09-22 22:13:45 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetPurchaseOrders.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/purchaseorders", Verbs="GET") public static class GetPurchaseOrders implements IReturn { public String userId = null; public Date fromDate = null; public Date toDate = null; @SerializedName("void") public Boolean Void = null; public Boolean paid = null; public String transactionIdentifier = null; public String couponCode = null; public String getUserId() { return userId; } public GetPurchaseOrders setUserId(String value) { this.userId = value; return this; } public Date getFromDate() { return fromDate; } public GetPurchaseOrders setFromDate(Date value) { this.fromDate = value; return this; } public Date getToDate() { return toDate; } public GetPurchaseOrders setToDate(Date value) { this.toDate = value; return this; } public Boolean isVoid() { return Void; } public GetPurchaseOrders setVoid(Boolean value) { this.Void = value; return this; } public Boolean isPaid() { return paid; } public GetPurchaseOrders setPaid(Boolean value) { this.paid = value; return this; } public String getTransactionIdentifier() { return transactionIdentifier; } public GetPurchaseOrders setTransactionIdentifier(String value) { this.transactionIdentifier = value; return this; } public String getCouponCode() { return couponCode; } public GetPurchaseOrders setCouponCode(String value) { this.couponCode = value; return this; } private static Object responseType = GetPurchaseOrdersResponse.class; public Object getResponseType() { return responseType; } } public static class GetPurchaseOrdersResponse { public ArrayList results = null; public ArrayList getResults() { return results; } public GetPurchaseOrdersResponse setResults(ArrayList value) { this.results = value; return this; } } public static class PurchaseOrderDto { public Integer id = null; public String userId = null; public Date createdDate = null; public String paymentType = null; @SerializedName("void") public Boolean Void = null; public Boolean paid = null; public String transactionIdentifier = null; public String couponCode = null; public ArrayList orderItems = null; public String payer = null; public String billingAddressLine1 = null; public String billingAddressCity = null; public String billingAddressState = null; public String billingAddressPostalCode = null; public String billingAddressCountryCode = null; public Integer getId() { return id; } public PurchaseOrderDto setId(Integer value) { this.id = value; return this; } public String getUserId() { return userId; } public PurchaseOrderDto setUserId(String value) { this.userId = value; return this; } public Date getCreatedDate() { return createdDate; } public PurchaseOrderDto setCreatedDate(Date value) { this.createdDate = value; return this; } public String getPaymentType() { return paymentType; } public PurchaseOrderDto setPaymentType(String value) { this.paymentType = value; return this; } public Boolean isVoid() { return Void; } public PurchaseOrderDto setVoid(Boolean value) { this.Void = value; return this; } public Boolean isPaid() { return paid; } public PurchaseOrderDto setPaid(Boolean value) { this.paid = value; return this; } public String getTransactionIdentifier() { return transactionIdentifier; } public PurchaseOrderDto setTransactionIdentifier(String value) { this.transactionIdentifier = value; return this; } public String getCouponCode() { return couponCode; } public PurchaseOrderDto setCouponCode(String value) { this.couponCode = value; return this; } public ArrayList getOrderItems() { return orderItems; } public PurchaseOrderDto setOrderItems(ArrayList value) { this.orderItems = value; return this; } public String getPayer() { return payer; } public PurchaseOrderDto setPayer(String value) { this.payer = value; return this; } public String getBillingAddressLine1() { return billingAddressLine1; } public PurchaseOrderDto setBillingAddressLine1(String value) { this.billingAddressLine1 = value; return this; } public String getBillingAddressCity() { return billingAddressCity; } public PurchaseOrderDto setBillingAddressCity(String value) { this.billingAddressCity = value; return this; } public String getBillingAddressState() { return billingAddressState; } public PurchaseOrderDto setBillingAddressState(String value) { this.billingAddressState = value; return this; } public String getBillingAddressPostalCode() { return billingAddressPostalCode; } public PurchaseOrderDto setBillingAddressPostalCode(String value) { this.billingAddressPostalCode = value; return this; } public String getBillingAddressCountryCode() { return billingAddressCountryCode; } public PurchaseOrderDto setBillingAddressCountryCode(String value) { this.billingAddressCountryCode = value; return this; } } }