/* Options: Date: 2024-06-02 08:58:26 Version: 8.23 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: GetEAccountingSettingsQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class EAccountingSettingsQueryResponse { public CompanyId?: string; public Active: boolean; public DefaultArticle6PercentVat: string; public DefaultArticle12PercentVat: number; public DefaultArticle25PercentVat: number; public DefaultCreateType: string; public DefaultTermsOfPaymentId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/eaccounting/settings", "GET") export class GetEAccountingSettingsQuery 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 'GetEAccountingSettingsQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new EAccountingSettingsQueryResponse(); } }