Class: Files::MessageReaction
- Inherits:
-
Object
- Object
- Files::MessageReaction
- Defined in:
- lib/files.com/models/message_reaction.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
- .all(params = {}, options = {}) ⇒ Object
-
.create(params = {}, options = {}) ⇒ Object
Parameters: user_id - int64 - User ID.
- .delete(id, params = {}, options = {}) ⇒ Object
- .destroy(id, params = {}, options = {}) ⇒ Object
-
.find(id, params = {}, options = {}) ⇒ Object
Parameters: id (required) - int64 - Message Reaction ID.
- .get(id, params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: user_id - int64 - User ID.
Instance Method Summary collapse
- #delete(params = {}) ⇒ Object
- #destroy(params = {}) ⇒ Object
-
#emoji ⇒ Object
string - Emoji used in the reaction.
- #emoji=(value) ⇒ Object
-
#id ⇒ Object
int64 - Reaction ID.
- #id=(value) ⇒ Object
-
#initialize(attributes = {}, options = {}) ⇒ MessageReaction
constructor
A new instance of MessageReaction.
- #save ⇒ Object
-
#user_id ⇒ Object
int64 - User ID.
- #user_id=(value) ⇒ Object
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ MessageReaction
Returns a new instance of MessageReaction.
7 8 9 10 |
# File 'lib/files.com/models/message_reaction.rb', line 7 def initialize(attributes = {}, = {}) @attributes = attributes || {} @options = || {} end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
5 6 7 |
# File 'lib/files.com/models/message_reaction.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/message_reaction.rb', line 5 def @options end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
82 83 84 |
# File 'lib/files.com/models/message_reaction.rb', line 82 def self.all(params = {}, = {}) list(params, ) end |
.create(params = {}, options = {}) ⇒ Object
Parameters:
user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
emoji (required) - string - Emoji to react with.
105 106 107 108 109 110 111 112 |
# File 'lib/files.com/models/message_reaction.rb', line 105 def self.create(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer) raise InvalidParameterError.new("Bad parameter: emoji must be an String") if params[:emoji] and !params[:emoji].is_a?(String) raise MissingParameterError.new("Parameter missing: emoji") unless params[:emoji] response, = Api.send_request("/message_reactions", :post, params, ) MessageReaction.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
114 115 116 117 118 119 120 121 122 |
# File 'lib/files.com/models/message_reaction.rb', line 114 def self.delete(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params[:id] and !params[:id].is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params[:id] Api.send_request("/message_reactions/#{params[:id]}", :delete, params, ) nil end |
.destroy(id, params = {}, options = {}) ⇒ Object
124 125 126 127 |
# File 'lib/files.com/models/message_reaction.rb', line 124 def self.destroy(id, params = {}, = {}) delete(id, params, ) nil end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - int64 - Message Reaction ID.
88 89 90 91 92 93 94 95 96 |
# File 'lib/files.com/models/message_reaction.rb', line 88 def self.find(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params[:id] and !params[:id].is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params[:id] response, = Api.send_request("/message_reactions/#{params[:id]}", :get, params, ) MessageReaction.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
98 99 100 |
# File 'lib/files.com/models/message_reaction.rb', line 98 def self.get(id, params = {}, = {}) find(id, params, ) end |
.list(params = {}, options = {}) ⇒ Object
Parameters:
user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
message_id (required) - int64 - Message to return reactions for.
70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/files.com/models/message_reaction.rb', line 70 def self.list(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer) raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String) raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer) raise InvalidParameterError.new("Bad parameter: message_id must be an Integer") if params[:message_id] and !params[:message_id].is_a?(Integer) raise MissingParameterError.new("Parameter missing: message_id") unless params[:message_id] List.new(MessageReaction, params) do Api.send_request("/message_reactions", :get, params, ) end end |
Instance Method Details
#delete(params = {}) ⇒ Object
39 40 41 42 43 44 45 46 47 |
# File 'lib/files.com/models/message_reaction.rb', line 39 def delete(params = {}) params ||= {} params[:id] = @attributes[:id] raise MissingParameterError.new("Current object doesn't have a id") unless @attributes[:id] raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params[:id] and !params[:id].is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params[:id] Api.send_request("/message_reactions/#{@attributes[:id]}", :delete, params, @options) end |
#destroy(params = {}) ⇒ Object
49 50 51 52 |
# File 'lib/files.com/models/message_reaction.rb', line 49 def destroy(params = {}) delete(params) nil end |
#emoji ⇒ Object
string - Emoji used in the reaction.
22 23 24 |
# File 'lib/files.com/models/message_reaction.rb', line 22 def emoji @attributes[:emoji] end |
#emoji=(value) ⇒ Object
26 27 28 |
# File 'lib/files.com/models/message_reaction.rb', line 26 def emoji=(value) @attributes[:emoji] = value end |
#id ⇒ Object
int64 - Reaction ID
13 14 15 |
# File 'lib/files.com/models/message_reaction.rb', line 13 def id @attributes[:id] end |
#id=(value) ⇒ Object
17 18 19 |
# File 'lib/files.com/models/message_reaction.rb', line 17 def id=(value) @attributes[:id] = value end |
#save ⇒ Object
54 55 56 57 58 59 60 61 62 63 |
# File 'lib/files.com/models/message_reaction.rb', line 54 def save if @attributes[:id] raise NotImplementedError.new("The MessageReaction object doesn't support updates.") else new_obj = MessageReaction.create(@attributes, @options) end @attributes = new_obj.attributes true end |
#user_id ⇒ Object
int64 - User ID. Provide a value of ‘0` to operate the current session’s user.
31 32 33 |
# File 'lib/files.com/models/message_reaction.rb', line 31 def user_id @attributes[:user_id] end |
#user_id=(value) ⇒ Object
35 36 37 |
# File 'lib/files.com/models/message_reaction.rb', line 35 def user_id=(value) @attributes[:user_id] = value end |