NAME
Acme::Nogizaka46::Base - A baseclass of the class represents each member of Nogizaka46.
SYNOPSIS
use Acme::Nogizaka46;
my $nogizaka = Acme::Nogizaka46->new;
# retrieve the members as a list of
# Acme::Nogizaka46::Base based objects
my @members = $nogizaka->members;
for my $member (@members) {
my $name_ja = $member->name_ja;
my $first_name_ja = $member->first_name_ja;
my $family_name_ja = $member->family_name_ja;
my $name_en = $member->name_en;
my $first_name_en = $member->first_name_en;
my $family_name_en = $member->family_name_en;
my $nick = $member->nick; # arrayref
my $birthday = $member->birthday; # DateTime object
my $age = $member->age;
my $blood_type = $member->blood_type;
my $hometown = $member->hometown;
my $emoticon = $member->emoticon; # arrayref
my $class = $member->class;
my $graduate_date = $member->graduate_date; # DateTime object
}
DESCRIPTION
Acme::Nogizaka46::Base is a baseclass of the class represents each member of Nogizaka46.
ACCESSORS
name_ja
first_name_ja
family_name_ja
name_en
first_name_en
family_name_en
nick
birthday
age
blood_type
hometown
emoticon
class
graduate_date
SEE ALSO
AUTHOR
Kentaro Kuribayashi <kentaro@cpan.org>
COPYRIGHT AND LICENSE (The MIT License)
Copyright (c) 2015, Takaaki TSUJIMOTO <2gmon.t@gmail.com>
Original Copyright (c) 2005 - 2007, Kentaro Kuribayashi <kentaro@cpan.org>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.