/* Options: Date: 2026-09-23 11:11:38 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.dev //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteArticleMapping.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class ArticleMappingResponse { /** @description The company id */ // @ApiMember(Description="The company id") public CompanyId: string; /** @description The id */ // @ApiMember(Description="The id") public Id: string; /** @description The BokaMera article id */ // @ApiMember(Description="The BokaMera article id") public ArticleId: number; /** @description The external reference */ // @ApiMember(Description="The external reference") public ExternalReference: string; /** @description The Reference Type */ // @ApiMember(Description="The Reference Type") public ReferenceType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/articles/mappings/{Id}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") export class DeleteArticleMapping implements IReturn, ICompany { /** @description Company to delete the article mapping for */ // @ApiMember(Description="Company to delete the article mapping for") public CompanyId?: string; /** @description Id of the article mapping */ // @ApiMember(Description="Id of the article mapping", IsRequired=true, ParameterType="path") public Id: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteArticleMapping'; } public getMethod() { return 'DELETE'; } public createResponse() { return new ArticleMappingResponse(); } }