Sha256: 63f93d8acc0ca3dd6643d4dcdd40239903e8115c51be501881b678ac20760d23
Contents?: true
Size: 654 Bytes
Versions: 431
Compression:
Stored size: 654 Bytes
Contents
module Spaceship module Tunes # Represents a read only version of an iTunes 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
431 entries across 431 versions & 1 rubygems