intercom-client
Version:
Official Node bindings to the Intercom API
21 lines (20 loc) • 583 B
TypeScript
/**
* @example
* {
* url: "https://www.example.com"
* }
*/
export interface CreateContentImportSourceRequest {
/** The status of the content import source. */
status?: CreateContentImportSourceRequest.Status;
/** The URL of the content import source. */
url: string;
}
export declare namespace CreateContentImportSourceRequest {
/** The status of the content import source. */
const Status: {
readonly Active: "active";
readonly Deactivated: "deactivated";
};
type Status = (typeof Status)[keyof typeof Status];
}