Sha256: b2ca8dd1f6a640990fbc5ad0651a698273028d5b0a22d342c763f6312df9cd58

Contents?: true

Size: 1.08 KB

Versions: 153

Compression:

Stored size: 1.08 KB

Contents

# FileCommentReaction

## Example FileCommentReaction Object

```
{
  "id": 1,
  "emoji": "👍"
}
```

* `id` (int64): Reaction ID
* `emoji` (string): Emoji used in the reaction.
* `user_id` (int64): User ID.  Provide a value of `0` to operate the current session's user.
* `file_comment_id` (int64): ID of file comment to attach reaction to.


---

## Create File Comment Reaction

```
Files::FileCommentReaction.create(
  user_id: 1, 
  file_comment_id: 1, 
  emoji: "emoji"
)
```

### Parameters

* `user_id` (int64): User ID.  Provide a value of `0` to operate the current session's user.
* `file_comment_id` (int64): Required - ID of file comment to attach reaction to.
* `emoji` (string): Required - Emoji to react with.


---

## Delete File Comment Reaction

```
Files::FileCommentReaction.delete(id)
```

### Parameters

* `id` (int64): Required - File Comment Reaction ID.


---

## Delete File Comment Reaction

```
file_comment_reaction = Files::FileCommentReaction.list_for(path).first

file_comment_reaction.delete
```

### Parameters

* `id` (int64): Required - File Comment Reaction ID.

Version data entries

153 entries across 153 versions & 1 rubygems

Version Path
files.com-1.0.132 docs/file_comment_reaction.md
files.com-1.0.131 docs/file_comment_reaction.md
files.com-1.0.130 docs/file_comment_reaction.md
files.com-1.0.129 docs/file_comment_reaction.md
files.com-1.0.128 docs/file_comment_reaction.md
files.com-1.0.127 docs/file_comment_reaction.md
files.com-1.0.126 docs/file_comment_reaction.md
files.com-1.0.125 docs/file_comment_reaction.md
files.com-1.0.124 docs/file_comment_reaction.md
files.com-1.0.123 docs/file_comment_reaction.md
files.com-1.0.122 docs/file_comment_reaction.md
files.com-1.0.121 docs/file_comment_reaction.md
files.com-1.0.120 docs/file_comment_reaction.md
files.com-1.0.119 docs/file_comment_reaction.md
files.com-1.0.118 docs/file_comment_reaction.md
files.com-1.0.117 docs/file_comment_reaction.md
files.com-1.0.116 docs/file_comment_reaction.md
files.com-1.0.115 docs/file_comment_reaction.md
files.com-1.0.114 docs/file_comment_reaction.md
files.com-1.0.113 docs/file_comment_reaction.md