import { ItemPayloadIncludedAttributes } from './itemPayloadIncludedAttributes'; import { ItemPayloadIncludedRelationships } from './itemPayloadIncludedRelationships'; import { TypeVersion } from './typeVersion'; /** * * @export * @interface ItemPayloadIncluded */ export interface ItemPayloadIncluded { /** * * @type {TypeVersion} * @memberof ItemPayloadIncluded */ 'type': TypeVersion; /** * The version number. Will always be ``1``. * @type {string} * @memberof ItemPayloadIncluded */ 'id': string; /** * * @type {ItemPayloadIncludedAttributes} * @memberof ItemPayloadIncluded */ 'attributes': ItemPayloadIncludedAttributes; /** * * @type {ItemPayloadIncludedRelationships} * @memberof ItemPayloadIncluded */ 'relationships'?: ItemPayloadIncludedRelationships; }