/* Options: Date: 2026-09-23 03:40:24 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ArticleMappingsQuery.* //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", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class ArticleMappingsQuery implements IReturn, ICompany { /** @description Company to show article mappings for */ // @ApiMember(Description="Company to show article mappings for") public CompanyId?: string; /** @description The Reference Type to filter on: StripeArticle, EAccountingArticle */ // @ApiMember(Description="The Reference Type to filter on: StripeArticle, EAccountingArticle") public ReferenceType: string; /** @description Article to show mappings for */ // @ApiMember(Description="Article to show mappings for") public ArticleId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ArticleMappingsQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }