/** * @name LocationStatus * @description Indicates whether the location is still in use. * @description active | suspended | inactive * @see LocationStatus * @version R4 * @author Roberto Araneda Espinoza */ export type LocationStatusType = 'active' | 'suspended' | 'inactive';