Sha256: 5be211a535f8236b040f32f3eb0811b0610bd88364d1592007a737a785d31ecc

Contents?: true

Size: 739 Bytes

Versions: 3

Compression:

Stored size: 739 Bytes

Contents

require_relative 'tunes_base'

module Spaceship
  module Tunes
    # Represents a version set inside of an application
    class VersionSet < TunesBase
      #####################################################
      # @!group General metadata
      #####################################################

      # @return (String) The type of the version set. So far only APP
      attr_accessor :type

      # @return (Spaceship::Tunes::Application) A reference to the application the version_set is contained in
      attr_accessor :application

      # @return (String)
      attr_accessor :platform

      attr_mapping(
        'type' => :type,
        'platformString' => :platform
      )
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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