UNPKG

@niur/google-admanager-api

Version:
75 lines 2.28 kB
/** * Represents the target gender for a GRP demographic targeted line item. */ export declare enum GrpTargetGender { /** * The value returned if the actual value is not exposed by the requested API version. */ UNKNOWN = "UNKNOWN", /** * Indicates that the GRP target gender is Male. */ MALE = "MALE", /** * Indicates that the GRP target gender is Female. */ FEMALE = "FEMALE", /** * Indicates that the GRP target gender is both male and female. */ BOTH = "BOTH" } /** * Represents available GRP providers that a line item will have its target demographic measured by. */ export declare enum GrpProvider { /** * The value returned if the actual value is not exposed by the requested API version. */ UNKNOWN = "UNKNOWN", NIELSEN = "NIELSEN", /** * Renamed to GOOGLE beginning in V201608. */ GOOGLE = "GOOGLE" } /** * Represents the pacing computation method for impressions on connected devices for a Nielsen measured line item. * This only applies when Nielsen measurement is enabled for connected devices. */ export declare enum NielsenCtvPacingType { /** * The value returned if the actual value is not exposed by the requested API version. */ UNKNOWN = "UNKNOWN", /** * The value returned if Nielsen measurement is disabled for connected devices. */ NONE = "NONE", /** * Indicates that Nielsen impressions on connected devices are included, and we apply coviewing in pacing. */ COVIEW = "COVIEW", /** * Indicates that Nielsen impressions on connected devices are included, and we apply strict coviewing in pacing. */ STRICT_COVIEW = "STRICT_COVIEW" } /** * Represents whose device categorization to use on Nielsen measured line item with auto-pacing enabled. */ export declare enum PacingDeviceCategorizationType { /** * The value returned if the actual value is not exposed by the requested API version. */ UNKNOWN = "UNKNOWN", /** * Use Google's device categorization in auto-pacing. */ GOOGLE = "GOOGLE", /** * Use Nielsen device categorization in auto-pacing */ NIELSEN = "NIELSEN" } //# sourceMappingURL=grpSettings.enum.d.ts.map