The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::Google::Notebook::Note - Note object for WWW::Google::Notebook

SYNOPSIS

  use WWW::Google::Notebook;
  my $google = WWW::Google::Notebook->new(
      username => $username,
      password => $password,
  );
  $google->login;
  my $notebook = $google->add_notebook('title');
  my $note = $notebook->add_note('note');
  print $note->content;
  print $note->created_on;
  $note->edit('note2');
  $note->delete;

DESCRIPTION

Google Notebook note class.

METHODS

edit($content)

Edit content.

update

Updates note.

delete

Deletes note.

notebook

Returns a parent notebook object.

ACCESSOR

id
content
created_on

Returns created date as epoch.

AUTHOR

Jiro Nishiguchi <jiro@cpan.org>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO