Interface TypeInteraction<Version>

interface TypeInteraction<Version> {
    fhirVersion: Version;
    http?: {
        headers: Record<string, string>;
        status: number;
    };
    level: "type";
    resource: ResourceType<Version>;
}

Type Parameters

Hierarchy (view full)

Properties

fhirVersion: Version
http?: {
    headers: Record<string, string>;
    status: number;
}
level