Sha256: 2aff8d5ab6eef8d95f11e7f7e752aba564e3416eb1acb2b3402b10d0c80c95e9
Contents?: true
Size: 372 Bytes
Versions: 38
Compression:
Stored size: 372 Bytes
Contents
module Braintree class OAuthCredentials include BaseModule # :nodoc: attr_reader :access_token, :refresh_token, :expires_at, :token_type def initialize(attributes) # :nodoc: set_instance_variables_from_hash(attributes) end class << self protected :new end def self._new(*args) # :nodoc: self.new *args end end end
Version data entries
38 entries across 38 versions & 1 rubygems