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::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