/** * @name AddressType * @description The type of an address (physical / postal). * @description postal | physical | both * @see AddressType * @version R4 * @author Roberto Araneda Espinoza */ export type AddressTypeType = 'postal' | 'physical' | 'both';