/* Options: Date: 2026-04-01 02:31:18 Version: 10.05 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: GetSummarizedInvoice.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class SummarizedInvoiceDetailResponse { public Id: string; public CompanyId: string; public CustomerId: string; public CustomerName: string; public EAccountingInvoiceId?: string; public Draft: boolean; public DateFrom: string; public DateTo: string; public ServiceId?: number; public Status: number; public StatusName: string; public ErrorMessage?: string; public BookingIds: number[] = []; public CreatedDate: string; public UpdatedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/eaccounting/summarizedinvoice/{Id}", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class GetSummarizedInvoice implements IReturn, ICompany { /** @description The summarized invoice id. */ // @ApiMember(Description="The summarized invoice id.", IsRequired=true) public Id: string; /** @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; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetSummarizedInvoice'; } public getMethod() { return 'GET'; } public createResponse() { return new SummarizedInvoiceDetailResponse(); } }