/* Options: Date: 2024-04-28 18:59:30 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: AppOverview.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; enum TechnologyTier { ProgrammingLanguage, Client, Http, Server, Data, SoftwareInfrastructure, OperatingSystem, HardwareInfrastructure, ThirdPartyServices, } class TechnologyInfo implements IConvertible { TechnologyTier? tier; String? slug; String? name; String? logoUrl; int? stacksCount; TechnologyInfo({this.tier,this.slug,this.name,this.logoUrl,this.stacksCount}); TechnologyInfo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { tier = JsonConverters.fromJson(json['tier'],'TechnologyTier',context!); slug = json['slug']; name = json['name']; logoUrl = json['logoUrl']; stacksCount = json['stacksCount']; return this; } Map toJson() => { 'tier': JsonConverters.toJson(tier,'TechnologyTier',context!), 'slug': slug, 'name': name, 'logoUrl': logoUrl, 'stacksCount': stacksCount }; getTypeName() => "TechnologyInfo"; TypeContext? context = _ctx; } // @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 AppOverviewResponse implements IConvertible { DateTime? created; List