/* Options: Date: 2025-12-06 08:52:03 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteBarTypeRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IDelete { } export class DeleteBarTypeResponse { public success?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/bar_type/delete", "DELETE") export class DeleteBarTypeRequest implements IReturn, IDelete { public slug: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteBarTypeRequest'; } public getMethod() { return 'DELETE'; } public createResponse() { return new DeleteBarTypeResponse(); } } }