class Esignatur::Api::RequestInfo

api response wrapper

Attributes

headers[R]
http_method[R]
url[R]

Public Class Methods

new(http_method, url, headers) click to toggle source
# File lib/esignatur/api/request_info.rb, line 9
def initialize(http_method, url, headers)
  @url = url
  @headers = headers
  @http_method = http_method
end