/* Options: Date: 2025-10-27 22:46:42 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: DeleteTableRecordRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/scadmeta/tables/{TablesId}/delete", "DELETE") class DeleteTableRecordRequest implements IReturn, IConvertible, IDelete { /** * Table id */ // @ApiMember(Description="Table id", IsRequired=true) int? TablesId; /** * Parameter list */ // @ApiMember(Description="Parameter list") Map? ParameterList; /** * Global parameter list */ // @ApiMember(Description="Global parameter list") Map? GlobalParamList; /** * View id */ // @ApiMember(Description="View id") int? ViewId; /** * Whether or not to refresh the cache */ // @ApiMember(Description="Whether or not to refresh the cache") bool? RefreshCache; DeleteTableRecordRequest({this.TablesId,this.ParameterList,this.GlobalParamList,this.ViewId,this.RefreshCache}); DeleteTableRecordRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TablesId = json['TablesId']; ParameterList = JsonConverters.fromJson(json['ParameterList'],'Map',context!); GlobalParamList = JsonConverters.fromJson(json['GlobalParamList'],'Map',context!); ViewId = json['ViewId']; RefreshCache = json['RefreshCache']; return this; } Map toJson() => { 'TablesId': TablesId, 'ParameterList': JsonConverters.toJson(ParameterList,'Map',context!), 'GlobalParamList': JsonConverters.toJson(GlobalParamList,'Map',context!), 'ViewId': ViewId, 'RefreshCache': RefreshCache }; createResponse() => bool(); getResponseTypeName() => "bool"; getTypeName() => "DeleteTableRecordRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'DeleteTableRecordRequest': TypeInfo(TypeOf.Class, create:() => DeleteTableRecordRequest()), 'Map': TypeInfo(TypeOf.Class, create:() => Map()), });