/* Options: Date: 2025-12-06 07:07:26 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: DeleteCategoryImageRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IDelete { } export enum DeploymentSlot { Production = 'Production', Qa = 'Qa', Unstable = 'Unstable', Test = 'Test', Local = 'Local', Docker = 'Docker', } export class CloudBlob { public publicUrl: string; public key: string; public environment?: DeploymentSlot; public bucket: string; public identifyingSuffix: string; public mimeType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class DeleteCategoryImageResponse { public deletedImage?: CloudBlob; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/category/delete_image", "DELETE") export class DeleteCategoryImageRequest implements IReturn, IDelete { public categoryId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteCategoryImageRequest'; } public getMethod() { return 'DELETE'; } public createResponse() { return new DeleteCategoryImageResponse(); } } }