/**
 * @name EligibilityRequestPurpose
 * @description A code specifying the types of information being requested.
 * @description auth-requirements | benefits | discovery | validation
 * @see <a href="https://hl7.org/fhir/R4/valueset-eligibilityrequest-purpose.html">EligibilityRequestPurpose</a>
 * @version R4
 * @author Claudia Alarcón Lazo
 */
export type EligibilityRequestPurposeType = 'auth-requirements' | 'benefits' | 'discovery' | 'validation';
