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
125 126 127 |
# File 'lib/files.com/models/clickwrap.rb', line 125 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.
151 152 153 154 155 156 157 158 159 160 |
# File 'lib/files.com/models/clickwrap.rb', line 151 def self.create(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: name must be an String") if params[:name] and !params[:name].is_a?(String) raise InvalidParameterError.new("Bad parameter: body must be an String") if params[:body] and !params[:body].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_bundles must be an String") if params[:use_with_bundles] and !params[:use_with_bundles].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_inboxes must be an String") if params[:use_with_inboxes] and !params[:use_with_inboxes].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_users must be an String") if params[:use_with_users] and !params[:use_with_users].is_a?(String) response, = Api.send_request("/clickwraps", :post, params, ) Clickwrap.new(response.data, ) end |
.delete(id, params = {}, options = {}) ⇒ Object
183 184 185 186 187 188 189 190 191 |
# File 'lib/files.com/models/clickwrap.rb', line 183 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("/clickwraps/#{params[:id]}", :delete, params, ) nil end |
.destroy(id, params = {}, options = {}) ⇒ Object
193 194 195 196 |
# File 'lib/files.com/models/clickwrap.rb', line 193 def self.destroy(id, params = {}, = {}) delete(id, params, ) nil end |
.find(id, params = {}, options = {}) ⇒ Object
Parameters:
id (required) - int64 - Clickwrap ID.
131 132 133 134 135 136 137 138 139 |
# File 'lib/files.com/models/clickwrap.rb', line 131 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("/clickwraps/#{params[:id]}", :get, params, ) Clickwrap.new(response.data, ) end |
.get(id, params = {}, options = {}) ⇒ Object
141 142 143 |
# File 'lib/files.com/models/clickwrap.rb', line 141 def self.get(id, params = {}, = {}) find(id, params, ) end |
.list(params = {}, options = {}) ⇒ Object
Parameters:
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).
116 117 118 119 120 121 122 123 |
# File 'lib/files.com/models/clickwrap.rb', line 116 def self.list(params = {}, = {}) 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) 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.
168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/files.com/models/clickwrap.rb', line 168 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 InvalidParameterError.new("Bad parameter: name must be an String") if params[:name] and !params[:name].is_a?(String) raise InvalidParameterError.new("Bad parameter: body must be an String") if params[:body] and !params[:body].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_bundles must be an String") if params[:use_with_bundles] and !params[:use_with_bundles].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_inboxes must be an String") if params[:use_with_inboxes] and !params[:use_with_inboxes].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_users must be an String") if params[:use_with_users] and !params[:use_with_users].is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params[: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[:id] and !params[:id].is_a?(Integer) raise MissingParameterError.new("Parameter missing: id") unless params[:id] Api.send_request("/clickwraps/#{@attributes[:id]}", :delete, params, @options) end |
#destroy(params = {}) ⇒ Object
97 98 99 100 |
# File 'lib/files.com/models/clickwrap.rb', line 97 def destroy(params = {}) delete(params) nil 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
102 103 104 105 106 107 108 109 110 111 |
# File 'lib/files.com/models/clickwrap.rb', line 102 def save if @attributes[:id] new_obj = update(@attributes) else new_obj = Clickwrap.create(@attributes, @options) end @attributes = new_obj.attributes true 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[:id] and !params[:id].is_a?(Integer) raise InvalidParameterError.new("Bad parameter: name must be an String") if params[:name] and !params[:name].is_a?(String) raise InvalidParameterError.new("Bad parameter: body must be an String") if params[:body] and !params[:body].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_bundles must be an String") if params[:use_with_bundles] and !params[:use_with_bundles].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_inboxes must be an String") if params[:use_with_inboxes] and !params[:use_with_inboxes].is_a?(String) raise InvalidParameterError.new("Bad parameter: use_with_users must be an String") if params[:use_with_users] and !params[:use_with_users].is_a?(String) raise MissingParameterError.new("Parameter missing: id") unless params[: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 |