Class: Spaceship::Tunes::AppVersionStatesHistory
- Defined in:
- spaceship/lib/spaceship/tunes/app_version_states_history.rb
Overview
Represents a read only version of an iTunes Connect Versions State History
Instance Attribute Summary collapse
-
#date ⇒ Integer
readonly
The date of the state.
-
#state_key ⇒ String
readonly
The state.
-
#user_email ⇒ String
readonly
The email of the user or nil.
-
#user_name ⇒ String
readonly
The name of the user who made the change.
Attributes inherited from Base
Method Summary
Methods inherited from TunesBase
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
#date ⇒ Integer (readonly)
Returns 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_key ⇒ String (readonly)
Returns the state.
8 9 10 |
# File 'spaceship/lib/spaceship/tunes/app_version_states_history.rb', line 8 def state_key @state_key end |
#user_email ⇒ String (readonly)
Returns 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_name ⇒ String (readonly)
Returns 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 |