Sha256: b950cb5c75d3f17bf815279262effb1854331191b790759992139d3d900f4c1a
Contents?: true
Size: 361 Bytes
Versions: 9
Compression:
Stored size: 361 Bytes
Contents
# frozen_string_literal: true module RatingChgkV2 class Client include RatingChgkV2::Rest attr_reader :token attr_accessor :timeout, :open_timeout def initialize(token: '', params: {}) @token = token @timeout = params.fetch(:timeout, nil) @open_timeout = params.fetch(:open_timeout, nil) end end end
Version data entries
9 entries across 9 versions & 1 rubygems