/* Options: Date: 2025-09-08 02:47:13 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: BillingHistory.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/account/billing") // @Route(Path="/BillingHistory") public static class BillingHistory implements IReturn { private static Object responseType = BillingHistoryResponse.class; public Object getResponseType() { return responseType; } } public static class BillingHistoryResponse { public ArrayList invoices = null; public ResponseStatus responseStatus = null; public ArrayList getInvoices() { return invoices; } public BillingHistoryResponse setInvoices(ArrayList value) { this.invoices = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public BillingHistoryResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class Invoice { public Integer orderId = null; public Date date = null; public String description = null; public Integer itemQuantity = null; public Integer total = null; public Boolean paid = null; public Integer getOrderId() { return orderId; } public Invoice setOrderId(Integer value) { this.orderId = value; return this; } public Date getDate() { return date; } public Invoice setDate(Date value) { this.date = value; return this; } public String getDescription() { return description; } public Invoice setDescription(String value) { this.description = value; return this; } public Integer getItemQuantity() { return itemQuantity; } public Invoice setItemQuantity(Integer value) { this.itemQuantity = value; return this; } public Integer getTotal() { return total; } public Invoice setTotal(Integer value) { this.total = value; return this; } public Boolean isPaid() { return paid; } public Invoice setPaid(Boolean value) { this.paid = value; return this; } } }