class Bumbleworks::Api::TaskPresenter

Public Instance Methods

to_hash() click to toggle source
# File lib/bumbleworks/api/lib/presenters/task_presenter.rb, line 4
def to_hash
  {
    :id => presented.id,
    :name => presented.to_s,
    :role => presented.role,
    :claimant => presented.claimant,
    :process_id => presented.wfid
  }
end