/* Options: Date: 2026-09-20 16:17:06 Version: 10.09 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 */ import 'package:servicestack/servicestack.dart'; /** * 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 = 0; AllowedAttributes({this.Aliased=0}); AllowedAttributes.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Aliased = JsonConverters.toDouble(json['range']) ?? 0; 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()), });