/* Options: Date: 2025-05-12 19:53:31 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AllowedAttributes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; /** * AllowedAttributes Description */ // @Route("/allowed-attributes", "GET") // @Api(Description="AllowedAttributes Description") // @ApiResponse(Description="Your request was not understood", StatusCode=400) // @DataContract class AllowedAttributes implements IConvertible, IGet { /** * Range Description */ // @DataMember(Name="Aliased") // @ApiMember(DataType="double", Description="Range Description", IsRequired=true, ParameterType="path") double? Aliased; AllowedAttributes({this.Aliased}); AllowedAttributes.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Aliased = JsonConverters.toDouble(json['range']); return this; } Map toJson() => { 'aliased': Aliased }; getTypeName() => "AllowedAttributes"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: { 'AllowedAttributes': TypeInfo(TypeOf.Class, create:() => AllowedAttributes()), });