/** * @name GoalLifecycleStatus * @description Codes that reflect the current state of a goal and whether the goal is still being targeted. * @description proposed | planned | accepted | active | on-hold | completed | cancelled | entered-in-error | rejected * @see GoalLifecycleStatus * @version R4 * @author Claudia Alarcón Lazo */ export type GoalLifecycleStatusType = 'proposed' | 'planned' | 'accepted' | 'active' | 'on-hold' | 'completed' | 'cancelled' | 'entered-in-error' | 'rejected';