class AppStoreInhouseResponse
Public Class Methods
new(response_json_hash)
click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 2 def initialize(response_json_hash) @response_json_hash = response_json_hash end
Public Instance Methods
messages()
click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 10 def messages return @response_json_hash[:messages] end
results()
click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/appstore_inhause_response.rb, line 6 def results return AppStoreInhouseResults.new(@response_json_hash[:results]) end