class PingResponse

Public Class Methods

new(response_json_hash) click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/ping_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/ping_response.rb, line 10
def messages
  return @response_json_hash[:messages]
end
results() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/ping_response.rb, line 6
def results
  return PingResults.new(@response_json_hash[:results])
end