
WebService::Simplenote::Note - represents an individual note

version 0.1.1

use WebService::Simplenote::Note;
my $note = WebService::Simplenote::Note->new(
content => "Some stuff",
);
printf "[%s] %s\n %s\n",
$note->modifydate->iso8601,
$note->title,
$note->content;
}

This class represents a note suitable for use with Simplenote. You should read the http://simplenoteapp.com/api/ docs for full details

The minimum required attribute to set is content.
Push a new tag onto tags.
Shortcut to set the markdown system tag.
Shortcut to set the pinned system tag.

Log::Any logger
Server-set unique id for the note.
Simplenote doens't use titles, so we autogenerate one from the first line of content.
Boolean; is this note in the trash?
Datetime objects
Arrayref[Str]; user-generated tags.
Arrayref[Str]; special tags.
The body of the note


This software is Copyright (c) 2012 by Ioan Rogers.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991

You can make new bug reports, and view existing ones, through the web interface at https://github.com/ioanrogers/WebService-Simplenote/issues.

The development version is on github at http://github.com/ioanrogers/WebService-Simplenote and may be cloned from git://github.com/ioanrogers/WebService-Simplenote.git