# Activity ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **actUser** | [**User**](User.md) | | [optional] **actUserId** | **Long** | The ID of the user who performed the action | [optional] **comment** | [**Comment**](Comment.md) | | [optional] **commentId** | **Long** | The ID of the comment associated with the activity (if applicable) | [optional] **content** | **String** | Additional content or details about the activity | [optional] **created** | [**Date**](Date.md) | The date and time when the activity occurred | [optional] **id** | **Long** | The unique identifier of the activity | [optional] **isPrivate** | **Boolean** | Whether this activity is from a private repository | [optional] **opType** | [**OpTypeEnum**](#OpTypeEnum) | the type of action | [optional] **refName** | **String** | The name of the git reference (branch/tag) associated with the activity | [optional] **repo** | [**Repository**](Repository.md) | | [optional] **repoId** | **Long** | The ID of the repository associated with the activity | [optional] **userId** | **Long** | The ID of the user who receives/sees this activity | [optional] ## Enum: OpTypeEnum Name | Value ---- | ----- CREATE_REPO | "create_repo" RENAME_REPO | "rename_repo" STAR_REPO | "star_repo" WATCH_REPO | "watch_repo" COMMIT_REPO | "commit_repo" CREATE_ISSUE | "create_issue" CREATE_PULL_REQUEST | "create_pull_request" TRANSFER_REPO | "transfer_repo" PUSH_TAG | "push_tag" COMMENT_ISSUE | "comment_issue" MERGE_PULL_REQUEST | "merge_pull_request" CLOSE_ISSUE | "close_issue" REOPEN_ISSUE | "reopen_issue" CLOSE_PULL_REQUEST | "close_pull_request" REOPEN_PULL_REQUEST | "reopen_pull_request" DELETE_TAG | "delete_tag" DELETE_BRANCH | "delete_branch" MIRROR_SYNC_PUSH | "mirror_sync_push" MIRROR_SYNC_CREATE | "mirror_sync_create" MIRROR_SYNC_DELETE | "mirror_sync_delete" APPROVE_PULL_REQUEST | "approve_pull_request" REJECT_PULL_REQUEST | "reject_pull_request" COMMENT_PULL | "comment_pull" PUBLISH_RELEASE | "publish_release" PULL_REVIEW_DISMISSED | "pull_review_dismissed" PULL_REQUEST_READY_FOR_REVIEW | "pull_request_ready_for_review" AUTO_MERGE_PULL_REQUEST | "auto_merge_pull_request"