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