import { IEntity } from "./entity"; import { IReportStorage } from "./report_storage"; import { IUser } from "./user"; /** * The {@link IReportStorageAuthorization} links a report to a user who is authorised * to view that report. */ export interface IReportStorageAuthorization extends IEntity { /** Gets or sets a timestamp of when the report was generated. */ dateTime?: Date; /** Gets or sets the report. */ reportStorage?: IReportStorage; /** Gets or sets the id of the user who is authorized to view the report. */ user?: IUser; } //# sourceMappingURL=report_storage_authorization.d.ts.map