/* Options: Date: 2025-07-17 23:36:05 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ContentElementDeleteReq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/content/{Id}", "DELETE") // @Route("/content/{Country}/{Section}/{ItemCode}", "DELETE") export class ContentElementDeleteReq implements IReturn { public id: string; public country: string; public section: string; public itemCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ContentElementDeleteReq'; } public getMethod() { return 'DELETE'; } public createResponse() { return new Array(); } }