Sha256: c3647b63176da69993feb9e949c550659aea88eee3be80346239ec8a99ae5119
Contents?: true
Size: 1.11 KB
Versions: 34
Compression:
Stored size: 1.11 KB
Contents
# Style ## Example Style Object ``` { "id": 1, "path": "", "logo": "https://mysite.files.com/...", "thumbnail": "" } ``` * `id` (int64): Style ID * `path` (string): Folder path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. * `logo`: Logo * `thumbnail`: Logo thumbnail * `file` (file): Logo for custom branding. --- ## Show Style ``` Files::Style.find(path) ``` ### Parameters * `path` (string): Required - Style path. --- ## Update Style ``` Files::Style.update(path, file: "file" ) ``` ### Parameters * `path` (string): Required - Style path. * `file` (file): Required - Logo for custom branding. --- ## Delete Style ``` Files::Style.delete(path) ``` ### Parameters * `path` (string): Required - Style path. --- ## Update Style ``` style = Files::Style.new style.update( file: "file" ) ``` ### Parameters * `path` (string): Required - Style path. * `file` (file): Required - Logo for custom branding. --- ## Delete Style ``` style = Files::Style.new style.delete ``` ### Parameters * `path` (string): Required - Style path.
Version data entries
34 entries across 34 versions & 1 rubygems