/* Options: Date: 2025-09-07 11:39:26 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BillingHistory.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/account/billing") // @Route(Path="/BillingHistory") open class BillingHistory : IReturn { companion object { private val responseType = BillingHistoryResponse::class.java } override fun getResponseType(): Any? = BillingHistory.responseType } open class BillingHistoryResponse { open var invoices:ArrayList? = null open var responseStatus:ResponseStatus? = null } open class Invoice { open var orderId:Int? = null open var date:Date? = null open var description:String? = null open var itemQuantity:Int? = null open var total:Int? = null open var paid:Boolean? = null }