/* Options: Date: 2026-08-01 16:24:09 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AgentUpdatePasswordRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/v1/AgentUpdatePassword", "POST,OPTIONS") class AgentUpdatePasswordRequest implements IConvertible, IPost { String? Username; String? Password; bool? Update; bool? EncryptPass; String? CurrentPassword; AgentUpdatePasswordRequest({this.Username,this.Password,this.Update,this.EncryptPass,this.CurrentPassword}); AgentUpdatePasswordRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Username = json['Username']; Password = json['Password']; Update = json['Update']; EncryptPass = json['EncryptPass']; CurrentPassword = json['CurrentPassword']; return this; } Map toJson() => { 'Username': Username, 'Password': Password, 'Update': Update, 'EncryptPass': EncryptPass, 'CurrentPassword': CurrentPassword }; getTypeName() => "AgentUpdatePasswordRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'AgentUpdatePasswordRequest': TypeInfo(TypeOf.Class, create:() => AgentUpdatePasswordRequest()), });