Sha256: 83b7bac68e5a485b2f2a410f05134bef4297055a3b9a53a0c67e953d09daaa72
Contents?: true
Size: 390 Bytes
Versions: 25
Compression:
Stored size: 390 Bytes
Contents
# frozen_string_literal: true module KnapsackPro module Client module API class Action attr_reader :endpoint_path, :http_method, :request_hash def initialize(args) @endpoint_path = args.fetch(:endpoint_path) @http_method = args.fetch(:http_method) @request_hash = args.fetch(:request_hash) end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems