intercom-client
Version:
Official Node bindings to the Intercom API
19 lines (18 loc) • 857 B
JavaScript
;
// This file was auto-generated by Fern from our API Definition.
Object.defineProperty(exports, "__esModule", { value: true });
exports.UpdateContentImportSourceRequest = void 0;
var UpdateContentImportSourceRequest;
(function (UpdateContentImportSourceRequest) {
/** If you intend to create or update External Pages via the API, this should be set to `api`. You can not change the value to or from api. */
UpdateContentImportSourceRequest.SyncBehavior = {
Api: "api",
Automated: "automated",
Manual: "manual",
};
/** The status of the content import source. */
UpdateContentImportSourceRequest.Status = {
Active: "active",
Deactivated: "deactivated",
};
})(UpdateContentImportSourceRequest || (exports.UpdateContentImportSourceRequest = UpdateContentImportSourceRequest = {}));