Sha256: ff6df7a841e2dfdcdc5ac80736818effddbb800055895202bfcf2c15bf38e959
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
# bandwidth # # This file was automatically generated by APIMATIC v2.0 # ( https://apimatic.io ). module Bandwidth # BaseController. class BaseController attr_accessor :config, :http_call_back def initialize(config, http_call_back: nil) @config = config @http_call_back = http_call_back @global_headers = { 'user-agent' => 'ruby-sdk-refs/tags/ruby3.12.0' } end def validate_parameters(args) args.each do |_name, value| if value.nil? raise ArgumentError, "Required parameter #{_name} cannot be nil." end end end def execute_request(request, binary: false) @http_call_back.on_before_request(request) if @http_call_back APIHelper.clean_hash(request.headers) request.headers.merge!(@global_headers) response = if binary config.http_client.execute_as_binary(request) else config.http_client.execute_as_string(request) end @http_call_back.on_after_response(response) if @http_call_back response end def validate_response(response) raise APIException.new 'HTTP Response Not OK', response unless response.status_code.between?(200, 208) # [200,208] = HTTP OK end end end
Version data entries
4 entries across 1 versions & 1 rubygems