/* Options: Date: 2024-07-03 12:50:55 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: GetEAccountingDefaultArticlesQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } // @Route("/eaccounting/defaultarticles", "GET") export class GetEAccountingDefaultArticlesQuery implements IReturn, ICompany { /** @description E-Accounting settings company Id. */ // @ApiMember(Description="E-Accounting settings company Id.") public CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEAccountingDefaultArticlesQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }