/* Options: Date: 2025-05-06 21:44: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: ProfileChangePasswordRequest.* //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/change-password", Verbs="PUT") open class ProfileChangePasswordRequest : IReturn, IPut { open var password:String? = null open var passwordConfirmation:String? = null companion object { private val responseType = ProfileChangePasswordResponse::class.java } override fun getResponseType(): Any? = ProfileChangePasswordRequest.responseType } open class ProfileChangePasswordResponse { open var passwordScore:Int? = null }