/* Options: Date: 2024-06-26 08:52:18 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: EAccountingInvoiceDraftQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class InvoiceAddress { public CorporateIdentityNumber: string; public InvoiceAddress1: string; public InvoiceAddress2: string; public InvoiceCity: string; public InvoicePostalCode: string; public InvoiceCountryCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class EAccountingPagination { /** @description Page number that will be fetched to e-accounting client; Default 1 */ // @DataMember(Order=1) // @ApiMember(Description="Page number that will be fetched to e-accounting client; Default 1") public PageNumber?: number; /** @description Page size that will be fetched to e-accounting client; Default 75~ */ // @DataMember(Order=2) // @ApiMember(Description="Page size that will be fetched to e-accounting client; Default 75~") public PageSize?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Person { public Ssn: string; public Amount: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export enum GreenTechnologyType { None = 'None', SolarCellInstallation = 'SolarCellInstallation', ElectricEnergyStorageInstallation = 'ElectricEnergyStorageInstallation', ElectricVehicleChargingPointInstallation = 'ElectricVehicleChargingPointInstallation', } export class ContributionMargin { public Amount?: number; public Percentage?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class InvoiceDraftLineQueryResponse { public ArticleNumber: string; public ArticleId: string; public IsServiceArticle?: boolean; public AmountNoVat: number; public PercentVat: number; public LineNumber?: number; public IsTextRow: boolean; public Text: string; public UnitPrice?: number; public UnitAbbreviation: string; public UnitAbbreviationEnglish: string; public DiscountPercentage?: number; public Quantity?: number; public IsWorkCost: boolean; public IsVatFree: boolean; public CostCenterItemId1: string; public CostCenterItemId2: string; public CostCenterItemId3: string; public UnitId: string; public ProjectId: string; public WorkCostType?: number; public WorkHours?: number; public MaterialCosts?: number; public GreenTechnologyType?: GreenTechnologyType; public ContributionMargin: ContributionMargin; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class NoteQueryResponse { public Id: string; public Text: string; public CreatedUtc: string; public ModifiedUtc: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class InvoiceDraftQueryResponse { public InvoiceId: string; public CreatedDate?: string; public TotalAmount?: number; public TotalVatAmount?: number; public CustomerId: string; public Rows: InvoiceDraftLineQueryResponse[]; public InvoiceDate: string; public DueDate: string; public DeliveryDate?: string; public Persons: Person[]; public InvoiceCustomerName: string; public InvoiceAddress: InvoiceAddress; public CustomerIsPrivatePerson: boolean; public CustomerNumber: string; public Notes: NoteQueryResponse[]; public NoteIds: string[]; public CreatedUtc: string; public IncludesVat: boolean; public PriceSign: string; public BookingId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/eaccounting/invoicedrafts", "GET") export class EAccountingInvoiceDraftQuery extends EAccountingPagination implements IReturn, ICompany { public BookingId?: number; public IncludeInvoiceLines: boolean; public IncludeInvoiceNotes: boolean; public CompanyId?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'EAccountingInvoiceDraftQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new InvoiceDraftQueryResponse(); } }