class Payoneer::ResponseError

Attributes

body[R]
code[R]

Public Class Methods

new(code:, body:) click to toggle source
# File lib/payoneer/response_error.rb, line 5
def initialize(code:, body:)
  @code = code
  @body = body
end