Class: Files::BundleNotification
- Inherits:
-
Object
- Object
- Files::BundleNotification
- Defined in:
- lib/files.com/models/bundle_notification.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 (required) - int64 - The id of the user to notify.
- .delete(id, params = {}, options = {}) ⇒ Object
- .destroy(id, params = {}, options = {}) ⇒ Object
-
.find(id, params = {}, options = {}) ⇒ Object
Parameters: id (required) - int64 - Bundle Notification ID.
- .get(id, params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: user_id - int64 - User ID.
-
.update(id, params = {}, options = {}) ⇒ Object
Parameters: notify_on_registration - boolean - Triggers bundle notification when a registration action occurs for it.
Instance Method Summary collapse
-
#bundle_id ⇒ Object
int64 - Bundle ID to notify on.
- #bundle_id=(value) ⇒ Object
- #delete(params = {}) ⇒ Object
- #destroy(params = {}) ⇒ Object
-
#id ⇒ Object
int64 - Bundle Notification ID.
- #id=(value) ⇒ Object
-
#initialize(attributes = {}, options = {}) ⇒ BundleNotification
constructor
A new instance of BundleNotification.
-
#notify_on_registration ⇒ Object
boolean - Triggers bundle notification when a registration action occurs for it.
- #notify_on_registration=(value) ⇒ Object
-
#notify_on_upload ⇒ Object
boolean - Triggers bundle notification when a upload action occurs for it.
- #notify_on_upload=(value) ⇒ Object
- #save ⇒ Object
-
#update(params = {}) ⇒ Object
Parameters: notify_on_registration - boolean - Triggers bundle notification when a registration action occurs for it.
-
#user_id ⇒ Object
int64 - The id of the user to notify.
- #user_id=(value) ⇒ Object
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ BundleNotification
Returns a new instance of BundleNotification.
7 8 9 10 |
# File 'lib/files.com/models/bundle_notification.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/bundle_notification.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/bundle_notification.rb', line 5 def @options end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
109 110 111 |
# File 'lib/files.com/models/bundle_notification.rb', line 109 def self.all(params = {}, = {}) list(params, ) end |
.create(params = {}, options = {}) ⇒ Object
Parameters:
user_id (required) - int64 - The id of the user to notify.
notify_on_registration - boolean - Triggers bundle notification when a registration action occurs for it.
notify_on_upload - boolean - Triggers bundle notification when a upload action occurs for it.
bundle_id (required) - int64 - Bundle ID to notify on
134 135 136 137 138 139 140 141 142 |
# File 'lib/files.com/models/bundle_notification.rb', line 134 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: bundle_id must be an Integer") if params[:bundle_id] and !params[:bundle_id].is_a?(Integer) raise MissingParameterError.new("Parameter missing: user_id") unless params[:user_id] raise MissingParameterError.new("Parameter missing: bundle_id") unless params[:bundle_id] response, = Api.send_request("/bundle_notifications", :post, params, ) BundleNotification.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
157 158 159 160 161 162 163 164 165 |
# File 'lib/files.com/models/bundle_notification.rb', line 157 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] response, = Api.send_request("/bundle_notifications/#{params[:id]}", :delete, params, ) response.data end |
.destroy(id, params = {}, options = {}) ⇒ Object
167 168 169 |
# File 'lib/files.com/models/bundle_notification.rb', line 167 def self.destroy(id, params = {}, = {}) delete(id, params, ) end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - int64 - Bundle Notification ID.
115 116 117 118 119 120 121 122 123 |
# File 'lib/files.com/models/bundle_notification.rb', line 115 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("/bundle_notifications/#{params[:id]}", :get, params, ) BundleNotification.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
125 126 127 |
# File 'lib/files.com/models/bundle_notification.rb', line 125 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. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
bundle_id - int64 - Bundle ID to notify on
98 99 100 101 102 103 104 105 106 107 |
# File 'lib/files.com/models/bundle_notification.rb', line 98 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: bundle_id must be an Integer") if params[:bundle_id] and !params[:bundle_id].is_a?(Integer) List.new(BundleNotification, params) do Api.send_request("/bundle_notifications", :get, params, ) end end |
.update(id, params = {}, options = {}) ⇒ Object
Parameters:
notify_on_registration - boolean - Triggers bundle notification when a registration action occurs for it.
notify_on_upload - boolean - Triggers bundle notification when a upload action occurs for it.
147 148 149 150 151 152 153 154 155 |
# File 'lib/files.com/models/bundle_notification.rb', line 147 def self.update(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("/bundle_notifications/#{params[:id]}", :patch, params, ) BundleNotification.new(response.data, ) end |
Instance Method Details
#bundle_id ⇒ Object
int64 - Bundle ID to notify on
13 14 15 |
# File 'lib/files.com/models/bundle_notification.rb', line 13 def bundle_id @attributes[:bundle_id] end |
#bundle_id=(value) ⇒ Object
17 18 19 |
# File 'lib/files.com/models/bundle_notification.rb', line 17 def bundle_id=(value) @attributes[:bundle_id] = value end |
#delete(params = {}) ⇒ Object
70 71 72 73 74 75 76 77 78 |
# File 'lib/files.com/models/bundle_notification.rb', line 70 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("/bundle_notifications/#{@attributes[:id]}", :delete, params, @options) end |
#destroy(params = {}) ⇒ Object
80 81 82 |
# File 'lib/files.com/models/bundle_notification.rb', line 80 def destroy(params = {}) delete(params) end |
#id ⇒ Object
int64 - Bundle Notification ID
22 23 24 |
# File 'lib/files.com/models/bundle_notification.rb', line 22 def id @attributes[:id] end |
#id=(value) ⇒ Object
26 27 28 |
# File 'lib/files.com/models/bundle_notification.rb', line 26 def id=(value) @attributes[:id] = value end |
#notify_on_registration ⇒ Object
boolean - Triggers bundle notification when a registration action occurs for it.
31 32 33 |
# File 'lib/files.com/models/bundle_notification.rb', line 31 def notify_on_registration @attributes[:notify_on_registration] end |
#notify_on_registration=(value) ⇒ Object
35 36 37 |
# File 'lib/files.com/models/bundle_notification.rb', line 35 def notify_on_registration=(value) @attributes[:notify_on_registration] = value end |
#notify_on_upload ⇒ Object
boolean - Triggers bundle notification when a upload action occurs for it.
40 41 42 |
# File 'lib/files.com/models/bundle_notification.rb', line 40 def notify_on_upload @attributes[:notify_on_upload] end |
#notify_on_upload=(value) ⇒ Object
44 45 46 |
# File 'lib/files.com/models/bundle_notification.rb', line 44 def notify_on_upload=(value) @attributes[:notify_on_upload] = value end |
#save ⇒ Object
84 85 86 87 88 89 90 91 |
# File 'lib/files.com/models/bundle_notification.rb', line 84 def save if @attributes[:id] update(@attributes) else new_obj = BundleNotification.create(@attributes, @options) @attributes = new_obj.attributes end end |
#update(params = {}) ⇒ Object
Parameters:
notify_on_registration - boolean - Triggers bundle notification when a registration action occurs for it.
notify_on_upload - boolean - Triggers bundle notification when a upload action occurs for it.
60 61 62 63 64 65 66 67 68 |
# File 'lib/files.com/models/bundle_notification.rb', line 60 def update(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("/bundle_notifications/#{@attributes[:id]}", :patch, params, @options) end |
#user_id ⇒ Object
int64 - The id of the user to notify.
49 50 51 |
# File 'lib/files.com/models/bundle_notification.rb', line 49 def user_id @attributes[:user_id] end |
#user_id=(value) ⇒ Object
53 54 55 |
# File 'lib/files.com/models/bundle_notification.rb', line 53 def user_id=(value) @attributes[:user_id] = value end |