/** * * A directed, qualified link from one healthcare element to another. Links should be created in a * single direction: * the reverse link can be found through a view. * / */ export declare class HealthElementQualifiedLink { /** * * The qualification of the link. Free string; using the names of LinkQualification entries is * encouraged but not enforced. */ type: string; /** * * A caller-chosen correlation id that groups related links across entities. */ associationId: string | undefined; /** * * The id of the linked healthcare element. */ healthElementId: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): HealthElementQualifiedLink; }