intercom-client
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fintercom%2Fintercom-node) [ • 810 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* A newsfeed is a collection of news items, targeted to a specific audience.
*
* Newsfeeds currently cannot be edited through the API, please refer to [this article](https://www.intercom.com/help/en/articles/6362267-getting-started-with-news) to set up your newsfeeds in Intercom.
*/
export interface Newsfeed {
/** The unique identifier for the newsfeed which is given by Intercom. */
id: string;
/** The type of object. */
type: "newsfeed";
/** The name of the newsfeed. This name will never be visible to your users. */
name: string;
/** Timestamp for when the newsfeed was created. */
created_at: number;
/** Timestamp for when the newsfeed was last updated. */
updated_at?: number;
}