@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
26 lines • 863 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContentBundleStatus = void 0;
/**
* Status for **ContentBundle** objects.
*/
var ContentBundleStatus;
(function (ContentBundleStatus) {
/**
* The object is active and stats are collected.
*/
ContentBundleStatus["ACTIVE"] = "ACTIVE";
/**
* The object is no longer active and no stats collected.
*/
ContentBundleStatus["INACTIVE"] = "INACTIVE";
/**
* The object has been archived.
*/
ContentBundleStatus["ARCHIVED"] = "ARCHIVED";
/**
* The value returned if the actual value is not exposed by the requested API version.
*/
ContentBundleStatus["UNKNOWN"] = "UNKNOWN";
})(ContentBundleStatus = exports.ContentBundleStatus || (exports.ContentBundleStatus = {}));
//# sourceMappingURL=contentBundle.enum.js.map