Class: VmaApi::FailureResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/vma_api/failure_response.rb

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ FailureResponse

Returns a new instance of FailureResponse.



5
6
7
# File 'lib/vma_api/failure_response.rb', line 5

def initialize(response)
  @response = response
end

Instance Method Details

#bodyObject



26
27
28
# File 'lib/vma_api/failure_response.rb', line 26

def body
  response.body
end

#errorObject



18
19
20
# File 'lib/vma_api/failure_response.rb', line 18

def error
  errors.first
end

#errorsObject



9
10
11
12
13
14
15
16
# File 'lib/vma_api/failure_response.rb', line 9

def errors
  if json?
    parsed_response = response.parse
    [PartnerApi::Errors::RequestError.new(code: parsed_response['code'], message: parsed_response['message'])]
  else
    [PartnerApi::Errors::RequestError.new(message: "Invalid Response: #{body}")]
  end
end

#headersObject



30
31
32
# File 'lib/vma_api/failure_response.rb', line 30

def headers
  response.headers.to_h
end

#statusObject



22
23
24
# File 'lib/vma_api/failure_response.rb', line 22

def status
  response.status
end