Sha256: f23749477c2c896c295a20c00243fcf85692bc66ca9ed0c2f0e4087bb717c3cb
Contents?: true
Size: 1.59 KB
Versions: 45
Compression:
Stored size: 1.59 KB
Contents
module Stripe # StripeResponse encapsulates some vitals of a response that came back from # the Stripe API. class StripeResponse # The data contained by the HTTP body of the response deserialized from # JSON. attr_accessor :data # The raw HTTP body of the response. attr_accessor :http_body # A Hash of the HTTP headers of the response. attr_accessor :http_headers # The integer HTTP status code of the response. attr_accessor :http_status # The Stripe request ID of the response. attr_accessor :request_id # Initializes a StripeResponse object from a Hash like the kind returned as # part of a Faraday exception. # # This may throw JSON::ParserError if the response body is not valid JSON. def self.from_faraday_hash(http_resp) resp = StripeResponse.new resp.data = JSON.parse(http_resp[:body], symbolize_names: true) resp.http_body = http_resp[:body] resp.http_headers = http_resp[:headers] resp.http_status = http_resp[:status] resp.request_id = http_resp[:headers]["Request-Id"] resp end # Initializes a StripeResponse object from a Faraday HTTP response object. # # This may throw JSON::ParserError if the response body is not valid JSON. def self.from_faraday_response(http_resp) resp = StripeResponse.new resp.data = JSON.parse(http_resp.body, symbolize_names: true) resp.http_body = http_resp.body resp.http_headers = http_resp.headers resp.http_status = http_resp.status resp.request_id = http_resp.headers["Request-Id"] resp end end end
Version data entries
45 entries across 45 versions & 1 rubygems