Skip to main content

core.medplumkeyvalueclient.set

Home > @medplum/core > MedplumKeyValueClient > set

MedplumKeyValueClient.set() method

Sets the value for the given key in the keyvalue store.

Signature:

set(key: string, value: string): Promise<void>;

Parameters

ParameterTypeDescription
keystringThe key to set the value for.
valuestringThe value to set.

Returns:

Promise<void>