class CheckMobi::Response

Public Class Methods

new(http_client) click to toggle source
# File lib/check_mobi/response.rb, line 17
def initialize(http_client)
  raise RequiredFieldError, 'parameter should be a CheckMobi::Client, which is missing' unless http_client.kind_of? CheckMobi::Client
  @http_client = http_client
end