/* Options: Date: 2025-09-07 09:17:01 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: Support.* //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/support") // @Route(Path="/Support") open class Support : IReturn { open var section:String? = null companion object { private val responseType = SupportResponse::class.java } override fun getResponseType(): Any? = Support.responseType } open class SupportResponse { open var activeSubscription:Subscription? = null open var section:String? = null open var maxQuantity:Int? = null open var supportQuantity:Int? = null open var skuType:String? = null open var supportContacts:ArrayList? = null open var responseStatus:ResponseStatus? = null } open class SupportContact { open var id:Int? = null open var customerId:Int? = null open var name:String? = null open var email:String? = null open var gitHub:String? = null } open class Subscription { open var id:Int? = null open var customerId:Int? = null open var email:String? = null open var skuId:Int? = null open var skuName:String? = null open var skuType:SkuType? = null open var code:String? = null open var quantity:Int? = null open var supportQuantity:Int? = null open var total:Int? = null open var isPlan:Boolean? = null open var isRenewal:Boolean? = null open var subscriptionDurationDays:Int? = null open var renewalDate:Date? = null open var licenseRef:String? = null open var licenseName:String? = null open var licenseAddress:String? = null open var licenseType:LicenseType? = null open var expiryDate:Date? = null open var licenseKey:LicenseKey? = null open var licenseKeyText:String? = null open var createdDate:Date? = null open var modifiedDate:Date? = null open var cancelledDate:Date? = null open var stripeSubscriptionId:String? = null open var emailId:Int? = null open var emailRenewalId:Int? = null open var emailExpiredId:Int? = null open var renewalSubscriptionId:Int? = null open var externalRef:String? = null open var notes:String? = null open var error:String? = null }