UNPKG

loop-modules

Version:

Shared modules for the Loop product suite.

35 lines (30 loc) 691 B
export interface LoopSessionDocumentAction { /** * The generated unique id of the document action * * @type {string} * @memberOf LoopSessionDocumentAction */ identity: string; /** * The identity of the content record used * * @type {string} * @memberOf LoopSessionDocumentAction */ mediaIdentity: string; /** * The page viewed on the document * * @type {number} * @memberOf LoopSessionDocumentAction */ page: number; /** * The UTC timestamp when the document action occured * * @type {number} * @memberOf LoopSessionDocumentAction */ timestamp: number; }