/* Options: Date: 2025-12-14 13:22:39 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://auth.migrantleap.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CompleteProfile.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/api/v1/completeprofile", Verbs="POST") open class CompleteProfile : IReturn { var email:String? = null var firstName:String? = null var lastName:String? = null var country:String? = null var language:String? = null var birthDate:Date? = 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 phoneValidationToken:String? = null var updateHealthProfile:Boolean? = null var password:String? = null companion object { private val responseType = CompleteProfileResponse::class.java } override fun getResponseType(): Any? = CompleteProfile.responseType } open class CompleteProfileResponse : BaseResponse() { } open class BaseResponse { var responseStatus:ResponseStatus? = null }