Sha256: 2c07f4dca0887a6ff9e7ccc01f015da595d963a9e2e18732970e203671bfe2cb
Contents?: true
Size: 244 Bytes
Versions: 6
Compression:
Stored size: 244 Bytes
Contents
# frozen_string_literal: true module FriendlyShipping class Response attr_reader :status, :body, :headers def initialize(status:, body:, headers:) @status = status @body = body @headers = headers end end end
Version data entries
6 entries across 6 versions & 1 rubygems