/* Options: Date: 2026-01-27 21:54:10 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RemoveOrganizationLabel.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } export interface IDelete { } // @Route("/orgs/{OrganizationId}/labels/{Slug}", "DELETE") export class RemoveOrganizationLabel implements IReturnVoid, IDelete { public organizationId: number; public slug: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RemoveOrganizationLabel'; } public getMethod() { return 'DELETE'; } public createResponse() {} }