The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Google::Notebook::Notebook - Notebook 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');
print $notebook->title;
$notebook->rename('title2');
my $note = $notebook->add_note('note');
$notebook->delete;

DESCRIPTION

Google Notebook notebook class.

METHODS

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

id
title

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