import { DSpaceObject } from './dspace-object.model'; import { Bitstream } from './bitstream.model'; import { Item } from './item.model'; import { RemoteData } from '../data/remote-data'; import { Observable } from 'rxjs'; export class Bundle extends DSpaceObject { /** * The primary bitstream of this Bundle */ primaryBitstream: Observable>; /** * An array of Items that are direct parents of this Bundle */ parents: Observable>; /** * The Item that owns this Bundle */ owner: Observable>; bitstreams: Observable> }