/* Options: Date: 2025-10-27 22:12:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TwoFAAuthenticate.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/twofa/authenticate", "POST") class TwoFAAuthenticate implements IConvertible, IPost { String? Username; String? Password; TwoFAAuthenticate({this.Username,this.Password}); TwoFAAuthenticate.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Username = json['Username']; Password = json['Password']; return this; } Map toJson() => { 'Username': Username, 'Password': Password }; getTypeName() => "TwoFAAuthenticate"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'TwoFAAuthenticate': TypeInfo(TypeOf.Class, create:() => TwoFAAuthenticate()), });