Sha256: 3ab1e7083fb84df81b5fd86e60d92709c1c7111a6cf3e7ce86d76319461c11ff
Contents?: true
Size: 369 Bytes
Versions: 18
Compression:
Stored size: 369 Bytes
Contents
# frozen_string_literal: true module Twilio module Util class Configuration attr_accessor :account_sid, :auth_token, :http_client def account_sid=(value) @account_sid = value end def auth_token=(value) @auth_token = value end def http_client=(value) @http_client = value end end end end
Version data entries
18 entries across 18 versions & 1 rubygems