fhirtypes
Version:
14 lines (13 loc) • 374 B
TypeScript
/**
* @name AddressType
* @description The type of an address (physical / postal).
* @description postal | physical | both
* @see <a href="https://hl7.org/fhir/R4/valueset-address-type.html">AddressType</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
export declare enum AddressTypeEnum {
POSTAL = "postal",
PHYSICAL = "physical",
BOTH = "both"
}