Sha256: 7675666ce16e28a5a315d3ac9d1c71f3e7ae0bc65396e1e177f12dda0db75a7e
Contents?: true
Size: 688 Bytes
Versions: 494
Compression:
Stored size: 688 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
494 entries across 494 versions & 5 rubygems