/** * 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 { Extension } from './extension'; import { Period } from './period'; import { PositiveInt } from './positiveInt'; /** * Details for all kinds of technology mediated contact points for a person or organization, including telephone, email, etc. */ export interface ContactPoint { id?: string; /** * May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. */ extension?: Array; /** * Telecommunications form for contact point - what communications system is required to make use of the contact. */ system?: string; value?: string; /** * Identifies the purpose for the contact point. */ use?: string; rank?: PositiveInt; period?: Period; }