Class: Unresponsys::Folder

Inherits:
Object show all
Defined in:
lib/unresponsys/folder.rb

Defined Under Namespace

Classes: SupplementalTables

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, name) ⇒ Folder

Returns a new instance of Folder.



5
6
7
8
# File 'lib/unresponsys/folder.rb', line 5

def initialize(client, name)
  @client = client
  @name   = name
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



3
4
5
# File 'lib/unresponsys/folder.rb', line 3

def client
  @client
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/unresponsys/folder.rb', line 3

def name
  @name
end

Instance Method Details

#supplemental_tablesObject



10
11
12
# File 'lib/unresponsys/folder.rb', line 10

def supplemental_tables
  @supplemental_tables ||= SupplementalTables.new(self)
end