|
NAMENet::Google::Analytics::Row - Base class for Google Analytics API result rowsVERSIONversion 3.03DESCRIPTIONResult row class for Net::Google::Analytics web service.CONSTRUCTORnewGENERATED ACCESSORSmy $year = $row->get_year; my $page_path = $row->get_page_path; For every dimension and metric, an accessor of the form "get_..." is created. The 'ga:' prefix is stripped from the dimension and metric names and camel case is converted to lower case with underscores. METHODSgetmy $value = $row->get($dimension_name); my $value = $row->get($metric_name); Returns the value of the dimension or metric with the given name. Use names without the 'ga:' prefix and converted to lower case with underscores. AUTHORNick Wellnhofer <wellnhofer@aevum.de>COPYRIGHT AND LICENSEThis software is copyright (c) 2015 by Nick Wellnhofer.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |