Class: Trello::Board

Inherits:
ApiObject show all
Defined in:
lib/trello/board.rb

Instance Method Summary collapse

Methods inherited from ApiObject

#initialize

Constructor Details

This class inherits a constructor from Trello::ApiObject

Instance Method Details

#add(**args) ⇒ Object



13
14
15
# File 'lib/trello/board.rb', line 13

def add(**args)
  @client.post("/1/boards", args)
end

#delete(id:) ⇒ Object



17
18
19
# File 'lib/trello/board.rb', line 17

def delete(id:)
  super
end

#fetch(id:) ⇒ Object



9
10
11
# File 'lib/trello/board.rb', line 9

def fetch(id:)
  super
end

#fetch_allObject



5
6
7
# File 'lib/trello/board.rb', line 5

def fetch_all
  super
end