/**
 * 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;
}
