Class: Files::Clickwrap
- Inherits:
-
Object
- Object
- Files::Clickwrap
- Defined in:
- lib/files.com/models/clickwrap.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: name - string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.) body - string - Body text of Clickwrap (supports Markdown formatting).
- .delete(id, params = {}, options = {}) ⇒ Object
- .destroy(id, params = {}, options = {}) ⇒ Object
-
.find(id, params = {}, options = {}) ⇒ Object
Parameters: id (required) - int64 - Clickwrap ID.
- .get(id, params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: cursor - string - Used for pagination.
-
.update(id, params = {}, options = {}) ⇒ Object
Parameters: name - string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.) body - string - Body text of Clickwrap (supports Markdown formatting).
Instance Method Summary collapse
-
#body ⇒ Object
string - Body text of Clickwrap (supports Markdown formatting).
- #body=(value) ⇒ Object
- #delete(params = {}) ⇒ Object
- #destroy(params = {}) ⇒ Object
-
#id ⇒ Object
int64 - Clickwrap ID.
- #id=(value) ⇒ Object
-
#initialize(attributes = {}, options = {}) ⇒ Clickwrap
constructor
A new instance of Clickwrap.
-
#name ⇒ Object
string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.).
- #name=(value) ⇒ Object
- #save ⇒ Object
-
#update(params = {}) ⇒ Object
Parameters: name - string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.) body - string - Body text of Clickwrap (supports Markdown formatting).
-
#use_with_bundles ⇒ Object
string - Use this Clickwrap for Bundles?.
- #use_with_bundles=(value) ⇒ Object
-
#use_with_inboxes ⇒ Object
string - Use this Clickwrap for Inboxes?.
- #use_with_inboxes=(value) ⇒ Object
-
#use_with_users ⇒ Object
string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
- #use_with_users=(value) ⇒ Object
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ Clickwrap
Returns a new instance of Clickwrap.
7 8 9 10 |
# File 'lib/files.com/models/clickwrap.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/clickwrap.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/clickwrap.rb', line 5 def @options end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
122 123 124 |
# File 'lib/files.com/models/clickwrap.rb', line 122 def self.all(params = {}, = {}) list(params, ) end |
.create(params = {}, options = {}) ⇒ Object
Parameters:
name - string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
body - string - Body text of Clickwrap (supports Markdown formatting).
use_with_bundles - string - Use this Clickwrap for Bundles?
use_with_inboxes - string - Use this Clickwrap for Inboxes?
use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
148 149 150 151 152 153 154 155 156 157 |
# File 'lib/files.com/models/clickwrap.rb', line 148 def self.create(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String) raise InvalidParameterError.new("Bad parameter: body must be an String") if params.dig(:body) and !params.dig(:body).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_bundles must be an String") if params.dig(:use_with_bundles) and !params.dig(:use_with_bundles).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_inboxes must be an String") if params.dig(:use_with_inboxes) and !params.dig(:use_with_inboxes).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_users must be an String") if params.dig(:use_with_users) and !params.dig(:use_with_users).is_a?(String) response, = Api.send_request("/clickwraps", :post, params, ) Clickwrap.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
180 181 182 183 184 185 186 187 188 |
# File 'lib/files.com/models/clickwrap.rb', line 180 def self.delete(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) response, = Api.send_request("/clickwraps/#{params[:id]}", :delete, params, ) response.data end |
.destroy(id, params = {}, options = {}) ⇒ Object
190 191 192 |
# File 'lib/files.com/models/clickwrap.rb', line 190 def self.destroy(id, params = {}, = {}) delete(id, params, ) end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - int64 - Clickwrap ID.
128 129 130 131 132 133 134 135 136 |
# File 'lib/files.com/models/clickwrap.rb', line 128 def self.find(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) response, = Api.send_request("/clickwraps/#{params[:id]}", :get, params, ) Clickwrap.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
138 139 140 |
# File 'lib/files.com/models/clickwrap.rb', line 138 def self.get(id, params = {}, = {}) find(id, params, ) end |
.list(params = {}, options = {}) ⇒ Object
Parameters:
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 the X-Files-Cursor-Next header.
per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
113 114 115 116 117 118 119 120 |
# File 'lib/files.com/models/clickwrap.rb', line 113 def self.list(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String) raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer) List.new(Clickwrap, params) do Api.send_request("/clickwraps", :get, params, ) end end |
.update(id, params = {}, options = {}) ⇒ Object
Parameters:
name - string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
body - string - Body text of Clickwrap (supports Markdown formatting).
use_with_bundles - string - Use this Clickwrap for Bundles?
use_with_inboxes - string - Use this Clickwrap for Inboxes?
use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/files.com/models/clickwrap.rb', line 165 def self.update(id, params = {}, = {}) params ||= {} params[:id] = id raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String) raise InvalidParameterError.new("Bad parameter: body must be an String") if params.dig(:body) and !params.dig(:body).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_bundles must be an String") if params.dig(:use_with_bundles) and !params.dig(:use_with_bundles).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_inboxes must be an String") if params.dig(:use_with_inboxes) and !params.dig(:use_with_inboxes).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_users must be an String") if params.dig(:use_with_users) and !params.dig(:use_with_users).is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) response, = Api.send_request("/clickwraps/#{params[:id]}", :patch, params, ) Clickwrap.new(response.data, ) end |
Instance Method Details
#body ⇒ Object
string - Body text of Clickwrap (supports Markdown formatting).
31 32 33 |
# File 'lib/files.com/models/clickwrap.rb', line 31 def body @attributes[:body] end |
#body=(value) ⇒ Object
35 36 37 |
# File 'lib/files.com/models/clickwrap.rb', line 35 def body=(value) @attributes[:body] = value end |
#delete(params = {}) ⇒ Object
87 88 89 90 91 92 93 94 95 |
# File 'lib/files.com/models/clickwrap.rb', line 87 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.dig(:id) and !params.dig(:id).is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) Api.send_request("/clickwraps/#{@attributes[:id]}", :delete, params, @options) end |
#destroy(params = {}) ⇒ Object
97 98 99 |
# File 'lib/files.com/models/clickwrap.rb', line 97 def destroy(params = {}) delete(params) end |
#id ⇒ Object
int64 - Clickwrap ID
13 14 15 |
# File 'lib/files.com/models/clickwrap.rb', line 13 def id @attributes[:id] end |
#id=(value) ⇒ Object
17 18 19 |
# File 'lib/files.com/models/clickwrap.rb', line 17 def id=(value) @attributes[:id] = value end |
#name ⇒ Object
string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
22 23 24 |
# File 'lib/files.com/models/clickwrap.rb', line 22 def name @attributes[:name] end |
#name=(value) ⇒ Object
26 27 28 |
# File 'lib/files.com/models/clickwrap.rb', line 26 def name=(value) @attributes[:name] = value end |
#save ⇒ Object
101 102 103 104 105 106 107 108 |
# File 'lib/files.com/models/clickwrap.rb', line 101 def save if @attributes[:id] update(@attributes) else new_obj = Clickwrap.create(@attributes, @options) @attributes = new_obj.attributes end end |
#update(params = {}) ⇒ Object
Parameters:
name - string - Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
body - string - Body text of Clickwrap (supports Markdown formatting).
use_with_bundles - string - Use this Clickwrap for Bundles?
use_with_inboxes - string - Use this Clickwrap for Inboxes?
use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/files.com/models/clickwrap.rb', line 72 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.dig(:id) and !params.dig(:id).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String) raise InvalidParameterError.new("Bad parameter: body must be an String") if params.dig(:body) and !params.dig(:body).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_bundles must be an String") if params.dig(:use_with_bundles) and !params.dig(:use_with_bundles).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_inboxes must be an String") if params.dig(:use_with_inboxes) and !params.dig(:use_with_inboxes).is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_users must be an String") if params.dig(:use_with_users) and !params.dig(:use_with_users).is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id) Api.send_request("/clickwraps/#{@attributes[:id]}", :patch, params, @options) end |
#use_with_bundles ⇒ Object
string - Use this Clickwrap for Bundles?
49 50 51 |
# File 'lib/files.com/models/clickwrap.rb', line 49 def use_with_bundles @attributes[:use_with_bundles] end |
#use_with_bundles=(value) ⇒ Object
53 54 55 |
# File 'lib/files.com/models/clickwrap.rb', line 53 def use_with_bundles=(value) @attributes[:use_with_bundles] = value end |
#use_with_inboxes ⇒ Object
string - Use this Clickwrap for Inboxes?
58 59 60 |
# File 'lib/files.com/models/clickwrap.rb', line 58 def use_with_inboxes @attributes[:use_with_inboxes] end |
#use_with_inboxes=(value) ⇒ Object
62 63 64 |
# File 'lib/files.com/models/clickwrap.rb', line 62 def use_with_inboxes=(value) @attributes[:use_with_inboxes] = value end |
#use_with_users ⇒ Object
string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
40 41 42 |
# File 'lib/files.com/models/clickwrap.rb', line 40 def use_with_users @attributes[:use_with_users] end |
#use_with_users=(value) ⇒ Object
44 45 46 |
# File 'lib/files.com/models/clickwrap.rb', line 44 def use_with_users=(value) @attributes[:use_with_users] = value end |