/* Options: Date: 2025-12-06 08:51:26 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: AgentResetMfaRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class AgentStoreNameResponse implements IConvertible { ResponseStatus? ResponseStatus; String? AgentStoreName; AgentStoreNameResponse({this.ResponseStatus,this.AgentStoreName}); AgentStoreNameResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); AgentStoreName = json['AgentStoreName']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'AgentStoreName': AgentStoreName }; getTypeName() => "AgentStoreNameResponse"; TypeContext? context = _ctx; } // @Route("/v1/AgentResetMfa", "POST,OPTIONS") class AgentResetMfaRequest implements IReturn, IConvertible, IPost { String? AgentName; String? AgentEmail; int? AgentId; AgentResetMfaRequest({this.AgentName,this.AgentEmail,this.AgentId}); AgentResetMfaRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AgentName = json['AgentName']; AgentEmail = json['AgentEmail']; AgentId = json['AgentId']; return this; } Map toJson() => { 'AgentName': AgentName, 'AgentEmail': AgentEmail, 'AgentId': AgentId }; createResponse() => AgentStoreNameResponse(); getResponseTypeName() => "AgentStoreNameResponse"; getTypeName() => "AgentResetMfaRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'AgentStoreNameResponse': TypeInfo(TypeOf.Class, create:() => AgentStoreNameResponse()), 'AgentResetMfaRequest': TypeInfo(TypeOf.Class, create:() => AgentResetMfaRequest()), });