Files
dspace-angular/src/app/core/shared/media-viewer-item.model.ts

32 lines
489 B
TypeScript

import { Bitstream } from './bitstream.model';
/**
* Model representing a media viewer item
*/
export class MediaViewerItem {
/**
* Incoming Bitsream
*/
bitstream: Bitstream;
/**
* Incoming Bitsream format type
*/
format: string;
/**
* Incoming Bitsream format mime type
*/
mimetype: string;
/**
* Incoming Bitsream thumbnail
*/
thumbnail: string;
/**
* Access token, if accessed via a Request-a-Copy link
*/
accessToken: string;
}