/* Options: Date: 2025-12-06 06:28:04 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: AgentSchedulerRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class AgentSchedulerResponse implements IConvertible { ResponseStatus? ResponseStatus; String? schedulerUrl; AgentSchedulerResponse({this.ResponseStatus,this.schedulerUrl}); AgentSchedulerResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); schedulerUrl = json['schedulerUrl']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'schedulerUrl': schedulerUrl }; getTypeName() => "AgentSchedulerResponse"; TypeContext? context = _ctx; } // @Route("/v1/Agent/Scheduler/{AgentName}", "GET,OPTIONS") class AgentSchedulerRequest implements IReturn, IConvertible, IGet { String? AgentName; AgentSchedulerRequest({this.AgentName}); AgentSchedulerRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AgentName = json['AgentName']; return this; } Map toJson() => { 'AgentName': AgentName }; createResponse() => AgentSchedulerResponse(); getResponseTypeName() => "AgentSchedulerResponse"; getTypeName() => "AgentSchedulerRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'AgentSchedulerResponse': TypeInfo(TypeOf.Class, create:() => AgentSchedulerResponse()), 'AgentSchedulerRequest': TypeInfo(TypeOf.Class, create:() => AgentSchedulerRequest()), });