Class: DotloopApi::EndPoints::Folder

Inherits:
Base
  • Object
show all
Defined in:
lib/dotloop_api/end_points/folder.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#create, #delete, #find, #save, #single_path

Methods included from ModelBuilder

#build_details, #build_documents, #build_model

Constructor Details

#initialize(client:, profile_id: nil, loop_id: nil) ⇒ Folder

Returns a new instance of Folder.



8
9
10
11
12
# File 'lib/dotloop_api/end_points/folder.rb', line 8

def initialize(client:, profile_id: nil, loop_id: nil)
  @profile_id = profile_id
  @loop_id = loop_id
  super(client:, path:, type: DotloopApi::Models::Profile::Loop::Folder)
end

Instance Attribute Details

#loop_idObject

Returns the value of attribute loop_id.



4
5
6
# File 'lib/dotloop_api/end_points/folder.rb', line 4

def loop_id
  @loop_id
end

#profile_idObject

Returns the value of attribute profile_id.



4
5
6
# File 'lib/dotloop_api/end_points/folder.rb', line 4

def profile_id
  @profile_id
end

Instance Method Details

#all(options = {}) ⇒ Object



14
15
16
17
# File 'lib/dotloop_api/end_points/folder.rb', line 14

def all(options = {})
  options_to_params(options)
  @client.get(path, **@params)[:data].map { |attrs| build_model(attrs) }
end

#pathObject



19
20
21
# File 'lib/dotloop_api/end_points/folder.rb', line 19

def path
  "/profile/#{@profile_id}/loop/#{@loop_id}/folder"
end