Class: Merge::Filestorage::File
- Inherits:
-
Object
- Object
- Merge::Filestorage::File
- Defined in:
- lib/merge_ruby_client/filestorage/types/file.rb
Overview
# The File Object
### Description
The `File` object is used to represent a file in the workspace. The Object
typically exists under a folder or drive, if it exists.
### Usage Example
Fetch from the `GET /api/filestorage/v1/files` endpoint and view their files.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#created_at ⇒ DateTime
readonly
The datetime that this object was created by Merge.
-
#description ⇒ String
readonly
The file’s description.
-
#drive ⇒ Merge::Filestorage::FileDrive
readonly
The drive that the file belongs to.
- #field_mappings ⇒ Hash{String => Object} readonly
-
#file_thumbnail_url ⇒ String
readonly
The URL that produces a thumbnail preview of the file.
-
#file_url ⇒ String
readonly
The URL to access the file.
-
#folder ⇒ Merge::Filestorage::FileFolder
readonly
The folder that the file belongs to.
- #id ⇒ String readonly
-
#mime_type ⇒ String
readonly
The file’s mime type.
-
#modified_at ⇒ DateTime
readonly
The datetime that this object was modified by Merge.
-
#name ⇒ String
readonly
The file’s name.
-
#permissions ⇒ Merge::Filestorage::FilePermissions
readonly
The Permission object is used to represent a user’s or group’s access to a File or Folder.
-
#remote_created_at ⇒ DateTime
readonly
When the third party’s file was created.
- #remote_data ⇒ Array<Hash{String => Object}> readonly
-
#remote_id ⇒ String
readonly
The third-party API ID of the matching object.
-
#remote_updated_at ⇒ DateTime
readonly
When the third party’s file was updated.
-
#remote_was_deleted ⇒ Boolean
readonly
Indicates whether or not this object has been deleted in the third party platform.
-
#size ⇒ Integer
readonly
The file’s size, in bytes.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Filestorage::File
Deserialize a JSON object to an instance of File.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(id: OMIT, remote_id: OMIT, created_at: OMIT, modified_at: OMIT, name: OMIT, file_url: OMIT, file_thumbnail_url: OMIT, size: OMIT, mime_type: OMIT, description: OMIT, folder: OMIT, permissions: OMIT, drive: OMIT, remote_created_at: OMIT, remote_updated_at: OMIT, remote_was_deleted: OMIT, field_mappings: OMIT, remote_data: OMIT, additional_properties: nil) ⇒ Merge::Filestorage::File constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of File to a JSON object.
Constructor Details
#initialize(id: OMIT, remote_id: OMIT, created_at: OMIT, modified_at: OMIT, name: OMIT, file_url: OMIT, file_thumbnail_url: OMIT, size: OMIT, mime_type: OMIT, description: OMIT, folder: OMIT, permissions: OMIT, drive: OMIT, remote_created_at: OMIT, remote_updated_at: OMIT, remote_was_deleted: OMIT, field_mappings: OMIT, remote_data: OMIT, additional_properties: nil) ⇒ Merge::Filestorage::File
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 89 def initialize(id: OMIT, remote_id: OMIT, created_at: OMIT, modified_at: OMIT, name: OMIT, file_url: OMIT, file_thumbnail_url: OMIT, size: OMIT, mime_type: OMIT, description: OMIT, folder: OMIT, permissions: OMIT, drive: OMIT, remote_created_at: OMIT, remote_updated_at: OMIT, remote_was_deleted: OMIT, field_mappings: OMIT, remote_data: OMIT, additional_properties: nil) @id = id if id != OMIT @remote_id = remote_id if remote_id != OMIT @created_at = created_at if created_at != OMIT @modified_at = modified_at if modified_at != OMIT @name = name if name != OMIT @file_url = file_url if file_url != OMIT @file_thumbnail_url = file_thumbnail_url if file_thumbnail_url != OMIT @size = size if size != OMIT @mime_type = mime_type if mime_type != OMIT @description = description if description != OMIT @folder = folder if folder != OMIT @permissions = if != OMIT @drive = drive if drive != OMIT @remote_created_at = remote_created_at if remote_created_at != OMIT @remote_updated_at = remote_updated_at if remote_updated_at != OMIT @remote_was_deleted = remote_was_deleted if remote_was_deleted != OMIT @field_mappings = field_mappings if field_mappings != OMIT @remote_data = remote_data if remote_data != OMIT @additional_properties = additional_properties @_field_set = { "id": id, "remote_id": remote_id, "created_at": created_at, "modified_at": modified_at, "name": name, "file_url": file_url, "file_thumbnail_url": file_thumbnail_url, "size": size, "mime_type": mime_type, "description": description, "folder": folder, "permissions": , "drive": drive, "remote_created_at": remote_created_at, "remote_updated_at": remote_updated_at, "remote_was_deleted": remote_was_deleted, "field_mappings": field_mappings, "remote_data": remote_data }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
59 60 61 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 59 def additional_properties @additional_properties end |
#created_at ⇒ DateTime (readonly)
Returns The datetime that this object was created by Merge.
24 25 26 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 24 def created_at @created_at end |
#description ⇒ String (readonly)
Returns The file’s description.
38 39 40 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 38 def description @description end |
#drive ⇒ Merge::Filestorage::FileDrive (readonly)
Returns The drive that the file belongs to.
46 47 48 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 46 def drive @drive end |
#field_mappings ⇒ Hash{String => Object} (readonly)
55 56 57 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 55 def field_mappings @field_mappings end |
#file_thumbnail_url ⇒ String (readonly)
Returns The URL that produces a thumbnail preview of the file. Typically an image.
32 33 34 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 32 def file_thumbnail_url @file_thumbnail_url end |
#file_url ⇒ String (readonly)
Returns The URL to access the file.
30 31 32 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 30 def file_url @file_url end |
#folder ⇒ Merge::Filestorage::FileFolder (readonly)
Returns The folder that the file belongs to.
40 41 42 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 40 def folder @folder end |
#id ⇒ String (readonly)
20 21 22 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 20 def id @id end |
#mime_type ⇒ String (readonly)
Returns The file’s mime type.
36 37 38 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 36 def mime_type @mime_type end |
#modified_at ⇒ DateTime (readonly)
Returns The datetime that this object was modified by Merge.
26 27 28 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 26 def modified_at @modified_at end |
#name ⇒ String (readonly)
Returns The file’s name.
28 29 30 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 28 def name @name end |
#permissions ⇒ Merge::Filestorage::FilePermissions (readonly)
Returns The Permission object is used to represent a user’s or group’s access to a File or Folder. Permissions are unexpanded by default. Use the query param ‘expand=permissions` to see more details under `GET /files`.
44 45 46 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 44 def @permissions end |
#remote_created_at ⇒ DateTime (readonly)
Returns When the third party’s file was created.
48 49 50 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 48 def remote_created_at @remote_created_at end |
#remote_data ⇒ Array<Hash{String => Object}> (readonly)
57 58 59 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 57 def remote_data @remote_data end |
#remote_id ⇒ String (readonly)
Returns The third-party API ID of the matching object.
22 23 24 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 22 def remote_id @remote_id end |
#remote_updated_at ⇒ DateTime (readonly)
Returns When the third party’s file was updated.
50 51 52 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 50 def remote_updated_at @remote_updated_at end |
#remote_was_deleted ⇒ Boolean (readonly)
Returns Indicates whether or not this object has been deleted in the third party platform.
53 54 55 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 53 def remote_was_deleted @remote_was_deleted end |
#size ⇒ Integer (readonly)
Returns The file’s size, in bytes.
34 35 36 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 34 def size @size end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Filestorage::File
Deserialize a JSON object to an instance of File
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 138 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) id = parsed_json["id"] remote_id = parsed_json["remote_id"] created_at = (DateTime.parse(parsed_json["created_at"]) unless parsed_json["created_at"].nil?) modified_at = (DateTime.parse(parsed_json["modified_at"]) unless parsed_json["modified_at"].nil?) name = parsed_json["name"] file_url = parsed_json["file_url"] file_thumbnail_url = parsed_json["file_thumbnail_url"] size = parsed_json["size"] mime_type = parsed_json["mime_type"] description = parsed_json["description"] if parsed_json["folder"].nil? folder = nil else folder = parsed_json["folder"].to_json folder = Merge::Filestorage::FileFolder.from_json(json_object: folder) end if parsed_json["permissions"].nil? = nil else = parsed_json["permissions"].to_json = Merge::Filestorage::FilePermissions.from_json(json_object: ) end if parsed_json["drive"].nil? drive = nil else drive = parsed_json["drive"].to_json drive = Merge::Filestorage::FileDrive.from_json(json_object: drive) end remote_created_at = unless parsed_json["remote_created_at"].nil? DateTime.parse(parsed_json["remote_created_at"]) end remote_updated_at = unless parsed_json["remote_updated_at"].nil? DateTime.parse(parsed_json["remote_updated_at"]) end remote_was_deleted = parsed_json["remote_was_deleted"] field_mappings = parsed_json["field_mappings"] remote_data = parsed_json["remote_data"] new( id: id, remote_id: remote_id, created_at: created_at, modified_at: modified_at, name: name, file_url: file_url, file_thumbnail_url: file_thumbnail_url, size: size, mime_type: mime_type, description: description, folder: folder, permissions: , drive: drive, remote_created_at: remote_created_at, remote_updated_at: remote_updated_at, remote_was_deleted: remote_was_deleted, field_mappings: field_mappings, remote_data: remote_data, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 214 def self.validate_raw(obj:) obj.id&.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.") obj.remote_id&.is_a?(String) != false || raise("Passed value for field obj.remote_id is not the expected type, validation failed.") obj.created_at&.is_a?(DateTime) != false || raise("Passed value for field obj.created_at is not the expected type, validation failed.") obj.modified_at&.is_a?(DateTime) != false || raise("Passed value for field obj.modified_at is not the expected type, validation failed.") obj.name&.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.") obj.file_url&.is_a?(String) != false || raise("Passed value for field obj.file_url is not the expected type, validation failed.") obj.file_thumbnail_url&.is_a?(String) != false || raise("Passed value for field obj.file_thumbnail_url is not the expected type, validation failed.") obj.size&.is_a?(Integer) != false || raise("Passed value for field obj.size is not the expected type, validation failed.") obj.mime_type&.is_a?(String) != false || raise("Passed value for field obj.mime_type is not the expected type, validation failed.") obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.") obj.folder.nil? || Merge::Filestorage::FileFolder.validate_raw(obj: obj.folder) obj..nil? || Merge::Filestorage::FilePermissions.validate_raw(obj: obj.) obj.drive.nil? || Merge::Filestorage::FileDrive.validate_raw(obj: obj.drive) obj.remote_created_at&.is_a?(DateTime) != false || raise("Passed value for field obj.remote_created_at is not the expected type, validation failed.") obj.remote_updated_at&.is_a?(DateTime) != false || raise("Passed value for field obj.remote_updated_at is not the expected type, validation failed.") obj.remote_was_deleted&.is_a?(Boolean) != false || raise("Passed value for field obj.remote_was_deleted is not the expected type, validation failed.") obj.field_mappings&.is_a?(Hash) != false || raise("Passed value for field obj.field_mappings is not the expected type, validation failed.") obj.remote_data&.is_a?(Array) != false || raise("Passed value for field obj.remote_data is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of File to a JSON object
204 205 206 |
# File 'lib/merge_ruby_client/filestorage/types/file.rb', line 204 def to_json(*_args) @_field_set&.to_json end |