Class: Spaceship::Tunes::AppVersionStatesHistory

Inherits:
TunesBase
  • Object
show all
Defined in:
spaceship/lib/spaceship/tunes/app_version_states_history.rb

Overview

Represents a read only version of an App Store Connect Versions State History

Instance Attribute Summary collapse

Attributes inherited from Base

#client, #raw_data

Method Summary

Methods inherited from TunesBase

client

Methods inherited from Base

attr_accessor, attr_mapping, attributes, #attributes, factory, #initialize, #inspect, mapping_module, method_missing, set_client, #setup, #to_s

Constructor Details

This class inherits a constructor from Spaceship::Base

Instance Attribute Details

#dateInteger (readonly)

Returns the date of the state.

Returns:

  • (Integer)

    the date of the state



17
18
19
# File 'spaceship/lib/spaceship/tunes/app_version_states_history.rb', line 17

def date
  @date
end

#state_keyString (readonly)

Returns the state.

Returns:



8
9
10
# File 'spaceship/lib/spaceship/tunes/app_version_states_history.rb', line 8

def state_key
  @state_key
end

#user_emailString (readonly)

Returns the email of the user or nil.

Returns:

  • (String)

    the email of the user or nil



14
15
16
# File 'spaceship/lib/spaceship/tunes/app_version_states_history.rb', line 14

def user_email
  @user_email
end

#user_nameString (readonly)

Returns The name of the user who made the change.

Returns:

  • (String)

    The name of the user who made the change



11
12
13
# File 'spaceship/lib/spaceship/tunes/app_version_states_history.rb', line 11

def user_name
  @user_name
end