/* Options: Date: 2025-06-08 15:31:03 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: ExportPayableEntityReport.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } export enum SendReceiptMethod { Email = 1, PdfExport = 2, } // @Route("/articles/{InternalReferenceId}/reports", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class ExportPayableEntityReport implements ICompany { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public CompanyId?: string; /** @description Id of the internal reference (booking, rebate code, etc) */ // @ApiMember(Description="Id of the internal reference (booking, rebate code, etc)", IsRequired=true, ParameterType="path") public InternalReferenceId: string; public SendReceiptMethod: SendReceiptMethod; /** @description Article type (Could be Service, rebate code types, etc.. */ // @ApiMember(Description="Article type (Could be Service, rebate code types, etc..", IsRequired=true) public ArticleTypeId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ExportPayableEntityReport'; } public getMethod() { return 'GET'; } public createResponse() {} }