Sha256: 4908b74a773a050d9c3bc7e81dc4da16274ca766fa9b72143018d5be65510ccf

Contents?: true

Size: 715 Bytes

Versions: 3

Compression:

Stored size: 715 Bytes

Contents

require_relative 'tunes_base'

module Spaceship
  module Tunes
    # Represents a read only version of an App Store Connect Versions State History
    class AppVersionStatesHistory < TunesBase
      # @return (String) the state
      attr_reader :state_key

      # @return (String) The name of the user who made the change
      attr_reader :user_name

      # @return (String) the email of the user or nil
      attr_reader :user_email

      # @return (Integer) the date of the state
      attr_reader :date

      attr_mapping({
        'stateKey' => :state_key,
        'userName' => :user_name,
        'userEmail' => :user_email,
        'date' => :date
      })
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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