/**
 * Success
 */
export interface ErxCheckPractitionerEnrollmentResponse {
    /**
     * Whether the practitioner is registered with the upstream eRx provider.
     */
    registered: boolean;
    /**
     * Whether the practitioner has confirmed their enrollment with the upstream eRx provider.
     */
    confirmed: boolean;
    /**
     * Whether the practitioner's account with the upstream eRx provider is active.
     */
    active: boolean;
    /**
     * Whether the practitioner's identity has been verified by the upstream eRx provider.
     */
    identityVerified: boolean;
    /**
     * Whether the practitioner has enrolled in two-factor authentication with the upstream eRx provider.
     */
    twoFactorEnrolled: boolean;
}
