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


WWW-Google-Notebook documentation  | view source Contained in the WWW-Google-Notebook distribution.

Index


NAME

Top

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

SYNOPSIS

Top

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

DESCRIPTION

Top

Google Notebook notebook class.

METHODS

Top

add_note($content);

Adds note.

notes

Returns your notes as WWW::Google::Notebook::Note objects.

rename($title)

Rename notebook.

update

Updates notebook.

delete

Deletes notebook.

ACCESSOR

Top

id
title

AUTHOR

Top

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

Top

* WWW::Google::Notebook
* http://www.google.com/notebook/

WWW-Google-Notebook documentation  | view source Contained in the WWW-Google-Notebook distribution.