/* Options: Date: 2025-07-18 01:00:48 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: ContentElementDeleteReq.* //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/{Id}", "DELETE") // @Route("/content/{Country}/{Section}/{ItemCode}", "DELETE") class ContentElementDeleteReq implements IReturn>, IConvertible { String? id; String? country; String? section; String? itemCode; ContentElementDeleteReq({this.id,this.country,this.section,this.itemCode}); ContentElementDeleteReq.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; country = json['country']; section = json['section']; itemCode = json['itemCode']; return this; } Map toJson() => { 'id': id, 'country': country, 'section': section, 'itemCode': itemCode }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "ContentElementDeleteReq"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'ContentElementDeleteReq': TypeInfo(TypeOf.Class, create:() => ContentElementDeleteReq()), });