import { Entity } from '@loopback/repository'; /** * Contains the information about how many invoices have been created in a specific year. */ export declare class NumberInvoices extends Entity { /** * The unique uuid. */ id: string; /** * The id of the recipient of the invoice. */ recipientId: string; /** * The amount of invoices of that year. */ number: number; /** * The year for which this entity hold the amount of invoices. */ year: number; constructor(data?: Partial); } /** * All relations. */ export interface NumberInvoicesRelations { } /** * The entity with all its relations. */ export type NumberInvoicesWithRelations = NumberInvoices & NumberInvoicesRelations;