Sha256: 73152b22c40ee265aca004cfbee750b558a0a904a9495b16f0b74301a47ff57d

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

require_relative 'tunes_base'

module Spaceship
  module Tunes
    class Territory < TunesBase
      # @return (String) The two-character country code (e.g. "US" for the United States)
      attr_accessor :code

      # @return (String) The ISO 3166-1 alpha-3 currency code (e.g. "USD" for the United States)
      attr_accessor :currency_code

      # @return (String) The country name (e.g. "United States" for the United States)
      attr_accessor :name

      # @return (String) The region (e.g. "The United States and Canada" for the United States)
      attr_accessor :region

      # @return (String) The region locale key (e.g. "ITC.region.NAM" for the United States)
      attr_accessor :region_locale_key

      attr_mapping(
        'code' => :code,
        'currencyCodeISO3A' => :currency_code,
        'name' => :name,
        'region' => :region,
        'regionLocaleKey' => :region_locale_key
      )

      class << self
        # Create a new object based on a two-character country code (e.g. "US" for the United States)
        def from_code(code)
          obj = self.new
          obj.code = code
          return obj
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 spaceship/lib/spaceship/tunes/territory.rb
fastlane_hotfix-2.165.0 spaceship/lib/spaceship/tunes/territory.rb
fastlane_hotfix-2.187.0 spaceship/lib/spaceship/tunes/territory.rb