/* Options: Date: 2025-09-22 21:01:11 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetApplications.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/applications", Verbs="GET") open class GetApplications : IReturn { var isActive:Boolean? = null companion object { private val responseType = GetApplicationsResponse::class.java } override fun getResponseType(): Any? = GetApplications.responseType } open class GetApplicationsResponse { var results:ArrayList = ArrayList() } open class Application { var id:String? = null var name:String? = null var token:String? = null var purchaseUrl:String? = null var isActive:Boolean? = null }