intercom-client
Version:
Official Node bindings to the Intercom API
21 lines (20 loc) • 694 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
export interface AwayStatusReason {
type?: string;
/** The unique identifier for the away status reason */
id?: string;
/** The display text for the away status reason */
label?: string;
/** The emoji associated with the status reason */
emoji?: string;
/** The display order of the status reason */
order?: number;
/** Whether the status reason has been soft deleted */
deleted?: boolean;
/** The Unix timestamp when the status reason was created */
created_at?: number;
/** The Unix timestamp when the status reason was last updated */
updated_at?: number;
}