/* Options: Date: 2025-12-06 05:50:35 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: AgentResetGracePeriod.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/AgentResetGracePeriod/{AgentId}", "PUT,OPTIONS") class AgentResetGracePeriod implements IConvertible, IPut { int? AgentId; AgentResetGracePeriod({this.AgentId}); AgentResetGracePeriod.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AgentId = json['AgentId']; return this; } Map toJson() => { 'AgentId': AgentId }; getTypeName() => "AgentResetGracePeriod"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'AgentResetGracePeriod': TypeInfo(TypeOf.Class, create:() => AgentResetGracePeriod()), });