/* Options: Date: 2025-05-06 21:06:54 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileUpdateEmailSendVerificationLinkRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/profile/update-email-start", Verbs="PUT") open class ProfileUpdateEmailSendVerificationLinkRequest : IReturn, IPut { @Validate(Validator="NotEmpty") // @Validate(Validator="Email") open var email:String? = null companion object { private val responseType = ProfileUpdateEmailSendVerificationLinkResponse::class.java } override fun getResponseType(): Any? = ProfileUpdateEmailSendVerificationLinkRequest.responseType } open class ProfileUpdateEmailSendVerificationLinkResponse { open var sentEmailWithRequestId:String? = null }