/** * FHIR Version R5 * The following is auto generated resource definition. * * OpenAPI spec version: 3.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { BundleEntry } from './bundleEntry'; import { BundleLink } from './bundleLink'; import { Code } from './code'; import { Id } from './id'; import { Identifier } from './identifier'; import { Instant } from './instant'; import { Meta } from './meta'; import { ResourceList } from './resourceList'; import { Signature } from './signature'; import { UnsignedInt } from './unsignedInt'; import { Uri } from './uri'; /** * A container for a collection of resources. */ export interface Bundle { /** * This is a Bundle resource */ resourceType: 'Bundle'; id?: Id; meta?: Meta; implicitRules?: Uri; language?: Code; identifier?: Identifier; type?: Code; timestamp?: Instant; total?: UnsignedInt; /** * A series of links that provide context to this bundle. */ link?: Array; /** * An entry in a bundle resource - will either contain a resource or information about a resource (transactions and history only). */ entry?: Array; signature?: Signature; issues?: ResourceList; }