Module: ChatWork::MyTask
- Defined in:
- lib/chatwork/my_task.rb
Class Method Summary collapse
-
.get(assigned_by_account_id: nil, status: nil) {|response_body, response_header| ... } ⇒ Array<Hashie::Mash>
Get the list of all unfinished tasks.
Class Method Details
.get(assigned_by_account_id: nil, status: nil) {|response_body, response_header| ... } ⇒ Array<Hashie::Mash>
Get the list of all unfinished tasks
(*This method returns up to 100 entries. We are planning to implement pagination to support larger number of data retrieval)
39 40 41 |
# File 'lib/chatwork/my_task.rb', line 39 def self.get(assigned_by_account_id: nil, status: nil, &block) ChatWork.client.get_my_tasks(assigned_by_account_id: assigned_by_account_id, status: status, &block) end |