/**
 * @name LocationMode
 * @description Indicates whether a resource instance represents a specific location or a class of locations.
 * @description instance | kind
 * @see <a href="https://hl7.org/fhir/R4/valueset-location-mode.html">LocationMode</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type LocationModeType = 'instance' | 'kind';
