/* Options: Date: 2025-05-06 21:29: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: ProfileUpdateMobilePhoneSendVerificationSmsRequest.* //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-mobile-phone-start", Verbs="PUT") open class ProfileUpdateMobilePhoneSendVerificationSmsRequest : IReturn, IPut { open var mobilePhone:String? = null companion object { private val responseType = ProfileUpdateMobilePhoneSendVerificationSmsResponse::class.java } override fun getResponseType(): Any? = ProfileUpdateMobilePhoneSendVerificationSmsRequest.responseType } open class ProfileUpdateMobilePhoneSendVerificationSmsResponse { open var profileUpdateMobilePhoneRequestToken:String? = null open var sentSmsWithRequestId:String? = null }