/* Options: Date: 2025-07-18 01:27:50 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SiteContentGetReq.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; // @Route("/content/{Country}/{Lang}") // @Route("/content/{Preview}/{Country}/{Lang}") class SiteContentGetReq implements IReturn>, IConvertible { String? country; String? lang; String? preview; String? environment; SiteContentGetReq({this.country,this.lang,this.preview,this.environment}); SiteContentGetReq.fromJson(Map json) { fromMap(json); } fromMap(Map json) { country = json['country']; lang = json['lang']; preview = json['preview']; environment = json['environment']; return this; } Map toJson() => { 'country': country, 'lang': lang, 'preview': preview, 'environment': environment }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "SiteContentGetReq"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'SiteContentGetReq': TypeInfo(TypeOf.Class, create:() => SiteContentGetReq()), });