/* Options: Date: 2024-12-23 12:25:11 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileUpdateMobilePhoneRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/profile/update-mobile-phone-finish", Verbs="PUT") open class ProfileUpdateMobilePhoneRequest : IReturn, IPut { var token:String? = null var shortCode:String? = null companion object { private val responseType = ProfileUpdateMobilePhoneResponse::class.java } override fun getResponseType(): Any? = ProfileUpdateMobilePhoneRequest.responseType } open class ProfileUpdateMobilePhoneResponse { var verifiedMobilePhone:String? = null }