001package com.intentsoftware.addapptr;
002
003/**
004 * Possible states of GDPR consent
005 */
006public enum NonIABConsent {
007    /**
008     * Unknown - if the user has never set a consent state.
009     */
010    UNKNOWN,
011
012    /**
013     * Consent has been granted by the user.
014     */
015    OBTAINED,
016
017    /**
018     * Consent has been declined by the user.
019     */
020    WITHHELD
021}