class AppStoreInhouseResponse::AppStoreInhouseResults

Public Class Methods

new(json_hash) click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 15
def initialize(json_hash)
  @json_hash = json_hash
end

Public Instance Methods

alt_version() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 39
def alt_version
  return @json_hash[:altVersion]
end
app_id() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 47
def app_id
  return @json_hash[:appId]
end
display_version() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 43
def display_version
  return @json_hash[:displayVersion]
end
id() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 19
def id
  return @json_hash[:id]
end
name() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 23
def name
  return @json_hash[:name]
end
platform_code() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 31
def platform_code
  return @json_hash[:platformCode]
end
platform_type() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 27
def platform_type
  return @json_hash[:platformType]
end
provisioning_profile() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 51
def provisioning_profile
  return @json_hash[:provisioningProfile]
end
version() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 35
def version
  return @json_hash[:version]
end