/** * 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 { Code } from './code'; import { Id } from './id'; import { Meta } from './meta'; import { ParametersParameter } from './parametersParameter'; import { Uri } from './uri'; /** * This resource is used to pass information into and back from an operation (whether invoked directly from REST or within a messaging environment). It is not persisted or allowed to be referenced by other resources. */ export interface Parameters { /** * This is a Parameters resource */ resourceType: 'Parameters'; id?: Id; meta?: Meta; implicitRules?: Uri; language?: Code; /** * A parameter passed to or received from the operation. */ parameter?: Array; }