Sha256: 704c2ee23212b20e49ea681fb171514ba90f925d5ae898fd70a214b0ac63cf2d
Contents?: true
Size: 1.76 KB
Versions: 189
Compression:
Stored size: 1.76 KB
Contents
module Spaceship module Tunes class PricingTier < TunesBase # @return (String) Number of the price Tier (e.g. "0" for Tier 0 aka Free) attr_accessor :tier_stem # @return (String) Name of the tier (e.g. "Free" for Tier 0) attr_accessor :tier_name # @return (Array of Spaceship::Tunes::PricingInfo objects) A list of all prices for the respective countries attr_accessor :pricing_info attr_mapping( 'tierStem' => :tier_stem, 'tierName' => :tier_name ) def pricing_info @pricing_info ||= raw_data['pricingInfo'].map { |info| PricingInfo.new(info) } end end class PricingInfo < TunesBase # @return (String) name of the country, e.g. "United States" attr_accessor :country # @return (String) country code, e.g. "US" attr_accessor :country_code # @return (String) currency symbol, e.g. "$" attr_accessor :currency_symbol # @return (String) currency code, e.g. "USD" attr_accessor :currency_code # @return (Number) net proceedings for the developer attr_accessor :wholesale_price # @return (Number) customer price attr_accessor :retail_price # @return (String) formatted customer price, e.g. "$0.00" attr_accessor :f_retail_price # @return (String) formatted net proceedings, e.g. "$0.00" attr_accessor :f_wholesale_price attr_mapping( 'country' => :country, 'countryCode' => :country_code, 'currencySymbol' => :currency_symbol, 'currencyCode' => :currency_code, 'wholesalePrice' => :wholesale_price, 'retailPrice' => :retail_price, 'fRetailPrice' => :f_retail_price, 'fWholesalePrice' => :f_wholesale_price ) end end end
Version data entries
189 entries across 189 versions & 1 rubygems