/* Options: Date: 2025-10-27 21:36:52 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: IntervalsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/intervals", "GET") // @DataContract class IntervalsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) String? Name; IntervalsLookup({this.Name}); IntervalsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Name = json['Name']; return this; } Map toJson() => { 'Name': Name }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "IntervalsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'IntervalsLookupResponse': TypeInfo(TypeOf.Class, create:() => IntervalsLookupResponse()), 'IntervalsLookup': TypeInfo(TypeOf.Class, create:() => IntervalsLookup()), });