Sha256: adc439e1f6a6ae521214b80440d78620ed4d89d16513ed305f6221e6e6d5c803
Contents?: true
Size: 1.63 KB
Versions: 6
Compression:
Stored size: 1.63 KB
Contents
# frozen_string_literal: true module Telnyx # TelnyxResponse encapsulates some vitals of a response that came back from # the Telnyx API. class TelnyxResponse # 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 Telnyx request ID of the response. attr_accessor :request_id # Initializes a TelnyxResponse 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 = TelnyxResponse.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]["X-Request-Id"] resp end # Initializes a TelnyxResponse 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 = TelnyxResponse.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["X-Request-Id"] resp end end end
Version data entries
6 entries across 6 versions & 1 rubygems