UNPKG

loop-modules

Version:

Shared modules for the Loop product suite.

52 lines (51 loc) 1.12 kB
export interface LoopActivityPayload { /** * The identity of the LoopSession object * * @type {string} * @memberOf LoopActivityPayload */ session?: string; /** * The identity of the LoopScenario object * * @type {string} * @memberOf LoopActivityPayload */ scenario?: string; /** * The identity of the LoopDocument object * * @type {string} * @memberOf LoopActivityPayload */ content?: string; /** * The identity of the LoopTopic object * * @type {string} * @memberOf LoopActivityPayload */ objection?: string; /** * The identity of the LoopAssignment object * * @type {string} * @memberOf LoopActivityPayload */ assignment?: string; /** * The UTC timestamp of when the activity was started * * @type {number} * @memberOf LoopActivityPayload */ started_at: number; /** * The UTC timestamp of when the activity was ended * * @type {number} * @memberOf LoopActivityPayload */ ended_at: number; }