/* Options: Date: 2025-10-27 22:46:49 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: GetTableRecordsByRowGuidRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class GetTableRecordsByIdResponse implements IConvertible { ResponseStatus? ResponseStatus; GetTableRecordsByIdResponse({this.ResponseStatus}); GetTableRecordsByIdResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "GetTableRecordsByIdResponse"; TypeContext? context = _ctx; } // @Route("/scadmeta/tables/{TablesId}/data/guid/{RowGuid}", "GET, POST") class GetTableRecordsByRowGuidRequest implements IReturn, IConvertible, IPost { /** * Table id */ // @ApiMember(Description="Table id", IsRequired=true) int? TablesId; /** * Row Guid */ // @ApiMember(Description="Row Guid", IsRequired=true) String? RowGuid; /** * Filter list */ // @ApiMember(Description="Filter list") Map? FilterList; GetTableRecordsByRowGuidRequest({this.TablesId,this.RowGuid,this.FilterList}); GetTableRecordsByRowGuidRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TablesId = json['TablesId']; RowGuid = json['RowGuid']; FilterList = JsonConverters.fromJson(json['FilterList'],'Map',context!); return this; } Map toJson() => { 'TablesId': TablesId, 'RowGuid': RowGuid, 'FilterList': JsonConverters.toJson(FilterList,'Map',context!) }; createResponse() => GetTableRecordsByIdResponse(); getResponseTypeName() => "GetTableRecordsByIdResponse"; getTypeName() => "GetTableRecordsByRowGuidRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'GetTableRecordsByIdResponse': TypeInfo(TypeOf.Class, create:() => GetTableRecordsByIdResponse()), 'GetTableRecordsByRowGuidRequest': TypeInfo(TypeOf.Class, create:() => GetTableRecordsByRowGuidRequest()), 'Map': TypeInfo(TypeOf.Class, create:() => Map()), });