import { BaseAttributesExtensionObjectWithSchemaLink } from './baseAttributesExtensionObjectWithSchemaLink'; import { JsonApiLink } from './jsonApiLink'; import { RelationshipLinksDataMetaData } from './relationshipLinksDataMetaData'; /** * The meta-information of the links of this resource. * @export * @interface RelationshipLinksDataMeta */ export interface RelationshipLinksDataMeta { /** * * @type {JsonApiLink} * @memberof RelationshipLinksDataMeta */ 'link'?: JsonApiLink; /** * * @type {RelationshipLinksDataMetaData} * @memberof RelationshipLinksDataMeta */ 'data'?: RelationshipLinksDataMetaData; /** * The MIME type of the content of the resource. * @type {string} * @memberof RelationshipLinksDataMeta */ 'mimeType'?: string; /** * * @type {BaseAttributesExtensionObjectWithSchemaLink} * @memberof RelationshipLinksDataMeta */ 'extension'?: BaseAttributesExtensionObjectWithSchemaLink; }