class Trello::Item
An Item
is a basic task that can be checked off and marked as completed.
@!attribute [r] id
@return [String]
@!attribute [r] name
@return [String]
@!attribute [r] name_data
@return [String]
@!attribute [r] type
@return [Object]
@!attribute [r] state
@return [Object]
@!attribute [r] position
@return [Object]
@!attribute [r] due_date
@return [Datetime]
@!attribute [r] member_id
@return [String]
@!attribute [r] checklist_id
@return [String]
@!attribute [w] checked
@return [Boolean]
Public Instance Methods
complete?()
click to toggle source
# File lib/trello/item.rb, line 44 def complete? state == "complete" end