@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
25 lines (24 loc) • 615 B
TypeScript
import * as t from 'io-ts';
import { IExtension } from './RTTI_Extension';
import { IElement } from './RTTI_Element';
export interface IAttachment {
id?: string;
extension?: IExtension[];
contentType?: string;
_contentType?: IElement;
language?: string;
_language?: IElement;
data?: string;
_data?: IElement;
url?: string;
_url?: IElement;
size?: number;
_size?: IElement;
hash?: string;
_hash?: IElement;
title?: string;
_title?: IElement;
creation?: string;
_creation?: IElement;
}
export declare const RTTI_Attachment: t.Type<IAttachment>;