Data::Apple::PriceTier

Utility for Apple (App|Mac) Store's price tier
Download

Data::Apple::PriceTier Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Daisuke Murase
  • Publisher web site:
  • http://search.cpan.org/~typester/

Data::Apple::PriceTier Tags


Data::Apple::PriceTier Description

Data::Apple::PriceTier is a simple Perl module that helps you to convert Apple's price tier to real currencies. It's useful to create server-side implementation of In-App purchases that supports multiple currencies.SYNOPSIS # class interface my $price = Data::Apple::PriceTier->price_for( currency => 'Euro', tier => 1, ); # => 0.79 my $proceed = Data::Apple::PriceTier->proceed_for( country => 'Japan', tier => 1, ); # => 60 # object interface my $us_tier = Data::Apple::PriceTier->new( country => 'U.S.' ); my $price = $us_tier->price_for_tier(1); # => 0.99Product's homepage


Data::Apple::PriceTier Related Software