- or download this
# $artfList - a hash reference
...
my $category = $row_object->getCategory;
print "ID: $id, Category: $category\n";
}
- or download this
my @ids;
for my $row_object (@$array) {
push( @ids, $row_object->getId );
}
- or download this
my @ids = map { $_->getId } @{ $artfList->{dataRows} };