/* Options: Date: 2025-05-06 19:41:32 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: EmailVerificationWithCodeRequest.* //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/verify-email", Verbs="POST") open class EmailVerificationWithCodeRequest : IReturn, IPost { open var shortCode:String? = null open var token:String? = null companion object { private val responseType = EmailVerificationWithCodeResponse::class.java } override fun getResponseType(): Any? = EmailVerificationWithCodeRequest.responseType } open class EmailVerificationWithCodeResponse { open var verifiedEmail:String? = null }