/* Options: Date: 2026-05-25 23:22:09 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: MetaOperationRefresh.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/meta/operation/refresh", "GET") // @Route("/meta/operation/refresh/{PerformDestructiveForceRefresh}", "GET") class MetaOperationRefresh implements IReturn>, IConvertible, IGet { bool? PerformDestructiveForceRefresh; MetaOperationRefresh({this.PerformDestructiveForceRefresh}); MetaOperationRefresh.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PerformDestructiveForceRefresh = json['PerformDestructiveForceRefresh']; return this; } Map toJson() => { 'PerformDestructiveForceRefresh': PerformDestructiveForceRefresh }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "MetaOperationRefresh"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'OperationDto': TypeInfo(TypeOf.Class, create:() => OperationDto()), 'MetaOperationRefresh': TypeInfo(TypeOf.Class, create:() => MetaOperationRefresh()), });