/** * The object containing meta-information on the data of the links of this resource. * @export * @interface RelationshipLinksDataMetaData */ export interface RelationshipLinksDataMetaData { /** * The type of the resource data. * @type {string} * @memberof RelationshipLinksDataMetaData */ 'type'?: string; /** * The ID or URN of the resource. * @type {string} * @memberof RelationshipLinksDataMetaData */ 'id'?: string; }