/* Options: Date: 2025-07-17 23:18:42 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: UpdateProfileRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/update-profile", Verbs="POST") open class UpdateProfileRequest : IReturn { var firstName:String? = null var lastName: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 companion object { private val responseType = UpdateProfileResponse::class.java } override fun getResponseType(): Any? = UpdateProfileRequest.responseType } open class UpdateProfileResponse { var responseCode:Int? = null var responseMessage:String? = null }