/* Options: Date: 2024-04-27 20:59:37 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: DeleteOrganizationCategory.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/orgs/{OrganizationId}/categories/{Id}", "DELETE") class DeleteOrganizationCategory implements IReturnVoid, IDelete, IConvertible { int? organizationId; int? id; DeleteOrganizationCategory({this.organizationId,this.id}); DeleteOrganizationCategory.fromJson(Map json) { fromMap(json); } fromMap(Map json) { organizationId = json['organizationId']; id = json['id']; return this; } Map toJson() => { 'organizationId': organizationId, 'id': id }; createResponse() {} getTypeName() => "DeleteOrganizationCategory"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'techstacks.io', types: { 'DeleteOrganizationCategory': TypeInfo(TypeOf.Class, create:() => DeleteOrganizationCategory()), });