import { TypeObject } from './typeObject'; /** * The data about the location of binary data. * @export * @interface ItemPayloadIncludedRelationshipsStorageData */ export interface ItemPayloadIncludedRelationshipsStorageData { /** * The type of the resource. Will always be ``objects``. * @type {TypeObject} * @memberof ItemPayloadIncludedRelationshipsStorageData */ 'type': TypeObject; /** * The URN indicating the location of the binary data. This is represented by the ``objectId`` returned when [uploading the file](/en/docs/data/v2/reference/http/buckets-:bucketKey-objects-:objectKey-PUT/). * @type {string} * @memberof ItemPayloadIncludedRelationshipsStorageData */ 'id': string; }