mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
32 lines
489 B
TypeScript
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;
|
|
}
|