/* Options: Date: 2026-02-04 00:48:52 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTermsAndConditionsRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/citizen/gettermsandconditions") open class GetTermsAndConditionsRQ : IReturn { var TermsType:Int? = null companion object { private val responseType = ListDictionaryRS::class.java } override fun getResponseType(): Any? = GetTermsAndConditionsRQ.responseType } open class ListDictionaryRS : CoreRS() { var Data:ArrayList> = ArrayList>() } open class CoreRS { var Code:String? = null var ErrorMessage:String? = null var ErrorStackTrace:String? = null }