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