/* Options: Date: 2026-02-03 23:09:46 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: RegisterCitizenRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/citizen/register") open class RegisterCitizenRQ : IReturn { var Id:String? = null var Email:String? = null var DisplayName:String? = null var PhoneNumber:String? = null var Provider:Long? = null var ProviderId:String? = null var MobileId:String? = null var MobileOS:String? = null var Password:String? = null var CreatedUser:String? = null companion object { private val responseType = RegisterCitizenRS::class.java } override fun getResponseType(): Any? = RegisterCitizenRQ.responseType } open class RegisterCitizenRS : CoreRS() { var Data:String? = null } open class CoreRS { var Code:String? = null var ErrorMessage:String? = null var ErrorStackTrace:String? = null }