Class: Files::Style
- Inherits:
-
Object
- Object
- Files::Style
- Defined in:
- lib/files.com/models/style.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
- .delete(path, params = {}, options = {}) ⇒ Object
- .destroy(path, params = {}, options = {}) ⇒ Object
-
.find(path, params = {}, options = {}) ⇒ Object
Parameters: path (required) - string - Style path.
- .get(path, params = {}, options = {}) ⇒ Object
-
.update(path, params = {}, options = {}) ⇒ Object
Parameters: file (required) - file - Logo for custom branding.
Instance Method Summary collapse
- #delete(params = {}) ⇒ Object
- #destroy(params = {}) ⇒ Object
-
#file ⇒ Object
file - Logo for custom branding.
- #file=(value) ⇒ Object
-
#id ⇒ Object
int64 - Style ID.
- #id=(value) ⇒ Object
-
#initialize(attributes = {}, options = {}) ⇒ Style
constructor
A new instance of Style.
-
#logo ⇒ Object
Logo.
- #logo=(value) ⇒ Object
-
#path ⇒ Object
string - Folder path This must be slash-delimited, but it must neither start nor end with a slash.
- #path=(value) ⇒ Object
- #save ⇒ Object
-
#thumbnail ⇒ Object
Logo thumbnail.
- #thumbnail=(value) ⇒ Object
-
#update(params = {}) ⇒ Object
Parameters: file (required) - file - Logo for custom branding.
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ Style
Returns a new instance of Style.
7 8 9 10 |
# File 'lib/files.com/models/style.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/style.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/style.rb', line 5 def @options end |
Class Method Details
.delete(path, params = {}, options = {}) ⇒ Object
117 118 119 120 121 122 123 124 125 |
# File 'lib/files.com/models/style.rb', line 117 def self.delete(path, params = {}, = {}) params ||= {} params[:path] = path raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String) raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path) response, = Api.send_request("/styles/#{params[:path]}", :delete, params, ) response.data end |
.destroy(path, params = {}, options = {}) ⇒ Object
127 128 129 |
# File 'lib/files.com/models/style.rb', line 127 def self.destroy(path, params = {}, = {}) delete(path, params, ) end |
.find(path, params = {}, options = {}) ⇒ Object
Parameters:
path (required) - string - Style path.
90 91 92 93 94 95 96 97 98 |
# File 'lib/files.com/models/style.rb', line 90 def self.find(path, params = {}, = {}) params ||= {} params[:path] = path raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String) raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path) response, = Api.send_request("/styles/#{params[:path]}", :get, params, ) Style.new(response.data, ) end |
.get(path, params = {}, options = {}) ⇒ Object
100 101 102 |
# File 'lib/files.com/models/style.rb', line 100 def self.get(path, params = {}, = {}) find(path, params, ) end |
.update(path, params = {}, options = {}) ⇒ Object
Parameters:
file (required) - file - Logo for custom branding.
106 107 108 109 110 111 112 113 114 115 |
# File 'lib/files.com/models/style.rb', line 106 def self.update(path, params = {}, = {}) params ||= {} params[:path] = path raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String) raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path) raise MissingParameterError.new("Parameter missing: file") unless params.dig(:file) response, = Api.send_request("/styles/#{params[:path]}", :patch, params, ) Style.new(response.data, ) end |
Instance Method Details
#delete(params = {}) ⇒ Object
70 71 72 73 74 75 76 77 78 |
# File 'lib/files.com/models/style.rb', line 70 def delete(params = {}) params ||= {} params[:path] = @attributes[:path] raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path] raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String) raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path) Api.send_request("/styles/#{@attributes[:path]}", :delete, params, @options) end |
#destroy(params = {}) ⇒ Object
80 81 82 |
# File 'lib/files.com/models/style.rb', line 80 def destroy(params = {}) delete(params) end |
#file ⇒ Object
file - Logo for custom branding.
49 50 51 |
# File 'lib/files.com/models/style.rb', line 49 def file @attributes[:file] end |
#file=(value) ⇒ Object
53 54 55 |
# File 'lib/files.com/models/style.rb', line 53 def file=(value) @attributes[:file] = value end |
#id ⇒ Object
int64 - Style ID
13 14 15 |
# File 'lib/files.com/models/style.rb', line 13 def id @attributes[:id] end |
#id=(value) ⇒ Object
17 18 19 |
# File 'lib/files.com/models/style.rb', line 17 def id=(value) @attributes[:id] = value end |
#logo ⇒ Object
Logo
31 32 33 |
# File 'lib/files.com/models/style.rb', line 31 def logo @attributes[:logo] end |
#logo=(value) ⇒ Object
35 36 37 |
# File 'lib/files.com/models/style.rb', line 35 def logo=(value) @attributes[:logo] = value end |
#path ⇒ Object
string - Folder path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
22 23 24 |
# File 'lib/files.com/models/style.rb', line 22 def path @attributes[:path] end |
#path=(value) ⇒ Object
26 27 28 |
# File 'lib/files.com/models/style.rb', line 26 def path=(value) @attributes[:path] = value end |
#save ⇒ Object
84 85 86 |
# File 'lib/files.com/models/style.rb', line 84 def save update(@attributes) end |
#thumbnail ⇒ Object
Logo thumbnail
40 41 42 |
# File 'lib/files.com/models/style.rb', line 40 def thumbnail @attributes[:thumbnail] end |
#thumbnail=(value) ⇒ Object
44 45 46 |
# File 'lib/files.com/models/style.rb', line 44 def thumbnail=(value) @attributes[:thumbnail] = value end |
#update(params = {}) ⇒ Object
Parameters:
file (required) - file - Logo for custom branding.
59 60 61 62 63 64 65 66 67 68 |
# File 'lib/files.com/models/style.rb', line 59 def update(params = {}) params ||= {} params[:path] = @attributes[:path] raise MissingParameterError.new("Current object doesn't have a path") unless @attributes[:path] raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String) raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path) raise MissingParameterError.new("Parameter missing: file") unless params.dig(:file) Api.send_request("/styles/#{@attributes[:path]}", :patch, params, @options) end |