Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DocumentActivity ¶
type DocumentActivity struct { ID uint64 `json:"id"` OrgID string `json:"orgId"` LabelID string `json:"folderId"` DocumentID string `json:"documentId"` PageID string `json:"pageId"` PageTitle string `json:"pageTitle"` UserID string `json:"userId"` Firstname string `json:"firstname"` Lastname string `json:"lastname"` ActivityType int `json:"activityType"` Created time.Time `json:"created"` }
DocumentActivity represents an activity taken against a document.
type SourceType ¶
type SourceType int
SourceType details where the activity occured.
const ( // SourceTypeSpace indicates activity against a space. SourceTypeSpace SourceType = 1 // SourceTypeDocument indicates activity against a document. SourceTypeDocument SourceType = 2 // SourceTypePage indicates activity against a document page. SourceTypePage SourceType = 3 )
type Type ¶
type Type int
Type determines type of user activity
const ( // TypeCreated records user document creation TypeCreated Type = 1 // TypeRead states user has read document TypeRead Type = 2 // TypeEdited states user has editing document TypeEdited Type = 3 // TypeDeleted records user deleting space/document TypeDeleted Type = 4 // TypeArchived records user archiving space/document TypeArchived Type = 5 // TypeApproved records user approval of document TypeApproved Type = 6 // TypeReverted records user content roll-back to previous version TypeReverted Type = 7 // TypePublishedTemplate records user creating new document template TypePublishedTemplate Type = 8 // TypePublishedBlock records user creating reusable content block TypePublishedBlock Type = 9 // TypeCommented records user providing document feedback TypeCommented Type = 10 // TypeRejected records user rejecting document TypeRejected Type = 11 // TypeSentSecureLink records user sending secure document link to email address(es) TypeSentSecureLink Type = 12 // TypeDraft records user marking space/document as draft TypeDraft Type = 13 // TypeVersioned records user creating new document version TypeVersioned Type = 14 )
type UserActivity ¶
type UserActivity struct { ID uint64 `json:"id"` OrgID string `json:"orgId"` UserID string `json:"userId"` LabelID string `json:"folderId"` DocumentID string `json:"documentId"` PageID string `json:"pageId"` ActivityType Type `json:"activityType"` SourceType SourceType `json:"sourceType"` SourceName string `json:"sourceName"` Created time.Time `json:"created"` }
UserActivity represents an activity undertaken by a user.
Click to show internal directories.
Click to hide internal directories.