import { TypeObject } from './typeObject'; /** * A container of data on the storage location. * @export * @interface VersionPayloadDataRelationshipsStorageData */ export interface VersionPayloadDataRelationshipsStorageData { /** * * @type {TypeObject} * @memberof VersionPayloadDataRelationshipsStorageData */ 'type': TypeObject; /** * The ID that uniquely identifies the storage location. * @type {string} * @memberof VersionPayloadDataRelationshipsStorageData */ 'id': string; }