/* Options: Date: 2024-05-05 10:16:18 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: RemoveOrganizationLabel.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/orgs/{OrganizationId}/labels/{Slug}", "DELETE") class RemoveOrganizationLabel implements IReturnVoid, IDelete, IConvertible { int? organizationId; String? slug; RemoveOrganizationLabel({this.organizationId,this.slug}); RemoveOrganizationLabel.fromJson(Map json) { fromMap(json); } fromMap(Map json) { organizationId = json['organizationId']; slug = json['slug']; return this; } Map toJson() => { 'organizationId': organizationId, 'slug': slug }; createResponse() {} getTypeName() => "RemoveOrganizationLabel"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'techstacks.io', types: { 'RemoveOrganizationLabel': TypeInfo(TypeOf.Class, create:() => RemoveOrganizationLabel()), });