/* Options: Date: 2025-12-14 13:13:13 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: UpdateHealthProfile.* //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/completehealthprofile", Verbs="POST") open class UpdateHealthProfile : IReturn { var profile:HealthProfile? = null var password:String? = null companion object { private val responseType = UpdateHealthProfileResponse::class.java } override fun getResponseType(): Any? = UpdateHealthProfile.responseType } open class UpdateHealthProfileResponse : BaseResponse() { } open class HealthProfile { var healthId:String? = null var firstName:String? = null var lastName:String? = null var email:String? = null var birthDate:String? = null var address:String? = null var address2:String? = null var state:String? = null var city:String? = null var zipCode:String? = null var phone:String? = null } open class BaseResponse { var responseStatus:ResponseStatus? = null }