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

Net::Google::DataAPI::Role::Service - provides base functionalities for Google Data API service

SYNOPSIS

package MyService;
use Any::Moose;
use Net::Google::DataAPI;
with 'Net::Google::DataAPI::Role::Service' => {
    service => 'wise',
    source => __PACKAGE__,
    ns => {
        foobar => 'http://example.com/schema#foobar',
    },
}

feedurl hoge => (
    is => 'ro',
    isa => 'Str',
    entry_class => 'MyService::Hoge',
    default => 'http://example.com/feed/hoge',
);

1;

DESCRIPTION

AUTHOR

Nobuo Danjou <nobuo.danjou@gmail.com>

SEE ALSO

Net::Google::AuthSub

Net::Google::DataAPI