/* Options: Date: 2025-05-04 23:38:00 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ChangeMyPassword.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Update the authenticated user's password */ // @Route("/my-password", "POST") // @Api(Description="Update the authenticated user's password") public class ChangeMyPassword : IReturnVoid, IPost, Codable { /** * The new password for this user */ // @ApiMember(Description="The new password for this user") public var newPassword:String? required public init(){} }