/* Options: Date: 2024-12-29 03:38:33 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EzProxyAuthRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/EzProxy/Auth", "POST") class EzProxyAuthRequest implements IConvertible, IPost { String? regent_login; String? password; EzProxyAuthRequest({this.regent_login,this.password}); EzProxyAuthRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { regent_login = json['regent_login']; password = json['password']; return this; } Map toJson() => { 'regent_login': regent_login, 'password': password }; getTypeName() => "EzProxyAuthRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'EzProxyAuthRequest': TypeInfo(TypeOf.Class, create:() => EzProxyAuthRequest()), });