intercom-client
Version:
Official Node bindings to the Intercom API
18 lines (17 loc) • 621 B
text/typescript
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;
}