/* Options: Date: 2025-07-18 08:06:56 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://portal-api.migrantleap.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/profile", Verbs="GET") open class ProfileRequest : IReturn { companion object { private val responseType = ProfileResponse::class.java } override fun getResponseType(): Any? = ProfileRequest.responseType } open class ProfileResponse { var firstName:String? = null var lastName:String? = null var email:String? = null var country:String? = null var language:String? = null var birthDate:String? = null var address:String? = null var address2:String? = null var city:String? = null var state:String? = null var zipCode:String? = null var phoneNumber:String? = null var memberId:String? = null var responseCode:Int? = null var responseMessage:String? = null }