@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
22 lines • 720 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RoleStatus = void 0;
/**
* Represents the status of the role, weather the role is active or inactive.
*/
var RoleStatus;
(function (RoleStatus) {
/**
* The status of an active role. (i.e. visible in the UI)
*/
RoleStatus["ACTIVE"] = "ACTIVE";
/**
* The status of an inactive role. (i.e. hidden in the UI)
*/
RoleStatus["INACTIVE"] = "INACTIVE";
/**
* The value returned if the actual value is not exposed by the requested API version.
*/
RoleStatus["UNKNOWN"] = "UNKNOWN";
})(RoleStatus = exports.RoleStatus || (exports.RoleStatus = {}));
//# sourceMappingURL=user.enum.js.map