class Everdone::TodoNote

Attributes

content[R]
created[R]
id[R]

Public Class Methods

new(todoist_note) click to toggle source
# File lib/everdone/todoItem.rb, line 10
def initialize(todoist_note)
    note = todoist_note
    @id = note['id']
    @created = note['posted']
    @content = note['content']
end