Sha256: 4d894c649dfdc4a9960fb3b329104cdb48433fae99825358a22dfe34008c5a3b
Contents?: true
Size: 501 Bytes
Versions: 15
Compression:
Stored size: 501 Bytes
Contents
# frozen_string_literal: true module Twilio module Util class Configuration attr_accessor :account_sid, :auth_token, :http_client, :region, :edge def account_sid=(value) @account_sid = value end def auth_token=(value) @auth_token = value end def http_client=(value) @http_client = value end def region=(value) @region = value end def edge=(value) @edge = value end end end end
Version data entries
15 entries across 15 versions & 1 rubygems