import { TypeVersion } from './typeVersion'; /** * The data about the version to be created. * @export * @interface ItemPayloadDataRelationshipsTipData */ export interface ItemPayloadDataRelationshipsTipData { /** * * @type {TypeVersion} * @memberof ItemPayloadDataRelationshipsTipData */ 'type': TypeVersion; /** * An ID to uniquely identify the version. * @type {string} * @memberof ItemPayloadDataRelationshipsTipData */ 'id': string; }