|
NAMENet::FreshBooks::API::Language - List the languages your FreshBooks account supportsVERSIONversion 0.24SYNOPSISmy $fb = Net::FreshBooks::API->new(...); my $languages = $fb->language->get_all(); listReturns an Net::FreshBooks::API::Iterator object. Currently, all list() functionality defaults to 15 items per page.On a practical level, you'll never want to use this method. get_all() will provide you with what you need. get_allReturns an ARRAYREF of all possible results, handling pagination for you.my $languages = $fb->language->get_all; foreach my $language( @{ $languages } ) { print $language->name, ' ', $language->code, "\n"; } DESCRIPTIONReturns a list of language names and the corresponding codes that you can use for clients, invoices and estimates. The codes are from IETF RFC 5646, which is usually the two-letter ISO-639-1 code. See <http://developers.freshbooks.com/docs/languages/> for more info.You should note that there is no "get" method for Language as the API does not provide it. AUTHORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2011 by Edmund von der Burg & Olaf Alders.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. |