/* Options: Date: 2025-05-06 20:34:57 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: EmailResendVerificationCodeRequest.* //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="/signup/resend-send-verification-email", Verbs="POST") open class EmailResendVerificationCodeRequest : IReturn, IPost { companion object { private val responseType = EmailResendVerificationCodeResponse::class.java } override fun getResponseType(): Any? = EmailResendVerificationCodeRequest.responseType } open class EmailResendVerificationCodeResponse { open var email:String? = null open var sentEmailWithRequestId:String? = null open var emailVerificationWithCodeToken:String? = null }