UNPKG

loop-modules

Version:

Shared modules for the Loop product suite.

100 lines (86 loc) 1.92 kB
export interface LoopActivity { /** * The identity of the LoopAssignment object * * @type {string} * @memberOf LoopTrendingActivity */ assignment_identity?: string; /** * The title of the LoopAssignment object * * @type {string} * @memberOf LoopTrendingActivity */ assignment_title?: string; /** * The identity of the LoopDocument object * * @type {string} * @memberOf LoopActivity */ content_identity?: string; /** * The title of the LoopDocument object * * @type {string} * @memberOf LoopActivity */ content_title?: string; /** * The identity of the LoopScenario object * * @type {string} * @memberOf LoopTrendingActivity */ scenario_identity?: string; /** * The title of the LoopScenario object * * @type {string} * @memberOf LoopTrendingActivity */ scenario_title?: string; /** * The identity of the LoopTopic object * * @type {string} * @memberOf LoopActivity */ objection_identity?: string; /** * The title of the LoopTopic object * * @type {string} * @memberOf LoopActivity */ objection_title?: string; /** * The identity of the LoopSession object * * @type {string} * @memberOf LoopTrendingActivity */ session_identity?: string; /** * The title of the LoopSession object * * @type {string} * @memberOf LoopTrendingActivity */ session_title?: string; /** * The UTC timestamp of when the record was created * * @type {number} * @memberOf LoopTrendingActivity */ created_at?: number; /** * The number of views on the content (if trending) * * @type {number} * @memberOf LoopActivity */ view_count?: number; }