class Dropbox::Metadata
Abstract class inherited by the other metadata classes.
Attributes
name[R]
path_display[R]
path_lower[R]
Public Class Methods
new(attrs={})
click to toggle source
# File lib/dropbox/metadata.rb, line 8 def initialize(attrs={}) @name = attrs['name'] @path_lower = attrs['path_lower'] @path_display = attrs['path_display'] end