intercom-client
Version:
Official Node bindings to the Intercom API
13 lines (12 loc) • 637 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* Assigns a news item to a newsfeed.
*/
export interface NewsfeedAssignment {
/** The unique identifier for the newsfeed which is given by Intercom. Publish dates cannot be in the future, to schedule news items use the dedicated feature in app (see this article). */
newsfeed_id: number;
/** Publish date of the news item on the newsfeed, use this field if you want to set a publish date in the past (e.g. when importing existing news items). On write, this field will be ignored if the news item state is "draft". */
published_at: number;
}