/* Options: Date: 2025-05-05 00:37:58 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ChangeMyPassword.* //ExcludeTypes: //InitializeCollections: False //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.* /** * Update the authenticated user's password */ @Route(Path="/my-password", Verbs="POST") @Api(Description="Update the authenticated user's password") open class ChangeMyPassword : IReturnVoid, IPost { /** * The new password for this user */ @ApiMember(Description="The new password for this user") open var newPassword:String? = null }