/* Options: Date: 2026-01-27 18:42:59 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IsUserBasedLicense.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/isuserbased") open class IsUserBasedLicense : IReturn { companion object { private val responseType = IsUserBasedLicenseResponse::class.java } override fun getResponseType(): Any? = IsUserBasedLicense.responseType } open class IsUserBasedLicenseResponse { var IsUserBased:Boolean? = null }