class Height::Model::List

Public Instance Methods

attributes() click to toggle source
# File lib/height/model/list.rb, line 3
def attributes
  [:id, :type, :key, :description, :url, :appearance]
end
tasks() click to toggle source
# File lib/height/model/list.rb, line 7
def tasks
  filters = {
    "listIds" => {
      "values" => [id]
    }
  }

  Height::API::Tasks.search(filters)
end