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.152 docs/file_comment_reaction.md
files.com-1.0.151 docs/file_comment_reaction.md
files.com-1.0.150 docs/file_comment_reaction.md
files.com-1.0.149 docs/file_comment_reaction.md
files.com-1.0.148 docs/file_comment_reaction.md
files.com-1.0.147 docs/file_comment_reaction.md
files.com-1.0.146 docs/file_comment_reaction.md
files.com-1.0.145 docs/file_comment_reaction.md
files.com-1.0.144 docs/file_comment_reaction.md
files.com-1.0.143 docs/file_comment_reaction.md
files.com-1.0.142 docs/file_comment_reaction.md
files.com-1.0.141 docs/file_comment_reaction.md
files.com-1.0.140 docs/file_comment_reaction.md
files.com-1.0.139 docs/file_comment_reaction.md
files.com-1.0.138 docs/file_comment_reaction.md
files.com-1.0.137 docs/file_comment_reaction.md
files.com-1.0.136 docs/file_comment_reaction.md
files.com-1.0.135 docs/file_comment_reaction.md
files.com-1.0.134 docs/file_comment_reaction.md
files.com-1.0.133 docs/file_comment_reaction.md