/* Options: Date: 2024-05-02 20:09:55 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetConfig.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; enum TechnologyTier { ProgrammingLanguage, Client, Http, Server, Data, SoftwareInfrastructure, OperatingSystem, HardwareInfrastructure, ThirdPartyServices, } // @DataContract class Option implements IConvertible { // @DataMember(Name="name") String? name; // @DataMember(Name="title") String? title; // @DataMember(Name="value") TechnologyTier? value; Option({this.name,this.title,this.value}); Option.fromJson(Map json) { fromMap(json); } fromMap(Map json) { name = json['name']; title = json['title']; value = JsonConverters.fromJson(json['value'],'TechnologyTier',context!); return this; } Map toJson() => { 'name': name, 'title': title, 'value': JsonConverters.toJson(value,'TechnologyTier',context!) }; getTypeName() => "Option"; TypeContext? context = _ctx; } class GetConfigResponse implements IConvertible { List