/**
 * Tracking data types to block from collection
 */

export enum AirbridgeTrackingBlocklist {
    // IDFA (Identifier for Advertisers). iOS only
    IDFA = 'idfa',

    // IDFV (Identifier for Vendors). iOS only
    IDFV = 'idfv',

    // SKAdNetwork (Apple's ad attribution framework). iOS only
    // When blocked, SKAdNetwork conversion values will not be updated
    SKAdNetwork = 'SKAdNetwork',

    // Google Advertising ID. Android only
    GAID = 'gaid',

    // Huawei Advertising ID. Android only
    OAID = 'oaid',

    // FireOS Advertising ID. Android only
    FAID = 'faid',

    // Google Play App Set ID (developer-scoped identifier for analytics). Android only
    AppSetID = 'appSetID'
}