/* Options: Date: 2024-10-16 12:36:52 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteArticle.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } // @Route("/articles/{Id}", "DELETE") export class DeleteArticle implements IReturn, ICompany { /** @description */ // @ApiMember(Description="") public CompanyId?: string; /** @description */ // @ApiMember(Description="", IsRequired=true, ParameterType="query") public Id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteArticle'; } public getMethod() { return 'DELETE'; } public createResponse() { return 0; } }