/* Options: Date: 2024-05-02 17:43:31 Version: 8.13 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() {} }