Sha256: 1a9d1523f8b53e623aecee42bf3ba173ad5fb87b8d9169c76cc43b4fec06d6da

Contents?: true

Size: 381 Bytes

Versions: 1

Compression:

Stored size: 381 Bytes

Contents

require 'appstore_kit_fork/models/model'

module AppstoreKitFork
  # Simple model class for representing AppVersion
  class Version < Model
    attr_reader :version_string, :store_state

    def initialize(options)
      super(options)

      attrs = options['attributes']
      @version_string = attrs['versionString']
      @store_state = attrs['appStoreState']
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
appstore_kit_fork-0.0.6 lib/appstore_kit_fork/models/app_version.rb