Sha256: db5f2d38344adfd69385d769dbb5843779366f32337d1421c188a8b76882f085

Contents?: true

Size: 1005 Bytes

Versions: 3

Compression:

Stored size: 1005 Bytes

Contents

module DropboxApi::Metadata
  # Example of a serialized {File} object:
  #   {
  #     ".tag": "file",
  #     "name": "Prime_Numbers.txt",
  #     "path_lower": "/homework/math/prime_numbers.txt",
  #     "path_display": "/Homework/math/Prime_Numbers.txt",
  #     "id": "id:a4ayc_80_OEAAAAAAAAAXw",
  #     "client_modified": "2015-05-12T15:50:38Z",
  #     "server_modified": "2015-05-12T15:50:38Z",
  #     "rev": "a1c10ce0dd78",
  #     "size": 7212,
  #     "sharing_info": {
  #       "read_only": true,
  #       "parent_shared_folder_id": "84528192421",
  #       "modified_by": "dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc"
  #     }
  #   }
  class File < Base
    field :name, String
    field :path_lower, String
    field :path_display, String
    field :id, String
    field :client_modified, Time
    field :server_modified, Time
    field :rev, String
    field :size, Integer
    field :content_hash, String, :optional

    def to_hash
      super.merge(".tag" => "file")
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dropbox_api-0.1.8 lib/dropbox_api/metadata/file.rb
dropbox_api-0.1.7 lib/dropbox_api/metadata/file.rb
dropbox_api-0.1.6 lib/dropbox_api/metadata/file.rb