@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
34 lines • 1.53 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LabelType = void 0;
/**
* Represents the types of labels supported.
*/
var LabelType;
(function (LabelType) {
/**
* Allows for the creation of labels to exclude competing ads from showing on the same page.
*/
LabelType["COMPETITIVE_EXCLUSION"] = "COMPETITIVE_EXCLUSION";
/**
* Allows for the creation of limits on the frequency that a user sees a particular type of creative over a portion of the inventory.
*/
LabelType["AD_UNIT_FREQUENCY_CAP"] = "AD_UNIT_FREQUENCY_CAP";
/**
* Allows for the creation of labels to exclude ads from showing against a tag that specifies the label as an exclusion.
*/
LabelType["AD_EXCLUSION"] = "AD_EXCLUSION";
/**
* Allows for the creation of labels that can be used to force the wrapping of a delivering creative with header/footer creatives. These labels are paired with a CreativeWrapper.
*/
LabelType["CREATIVE_WRAPPER"] = "CREATIVE_WRAPPER";
/**
* Allows for the creation of labels mapped to a Google canonical ad category, which can be used for competitive exclusions and blocking across Google systems.
*/
LabelType["CANONICAL_CATEGORY"] = "CANONICAL_CATEGORY";
/**
* The value returned if the actual value is not exposed by the requested API version.
*/
LabelType["UNKNOWN"] = "UNKNOWN";
})(LabelType = exports.LabelType || (exports.LabelType = {}));
//# sourceMappingURL=label.enum.js.map