import { MetaRefs } from './metaRefs'; import { TypeVersion } from './typeVersion'; /** * * @export * @interface ListRefsRelationshipsResourcesData */ export interface ListRefsRelationshipsResourcesData { /** * * @type {TypeVersion} * @memberof ListRefsRelationshipsResourcesData */ 'type'?: TypeVersion; /** * The URN of the version. * @type {string} * @memberof ListRefsRelationshipsResourcesData */ 'id'?: string; /** * * @type {MetaRefs} * @memberof ListRefsRelationshipsResourcesData */ 'meta'?: MetaRefs; }