Sha256: a985e214529d67259ebf8fc19d6abb4adc23ee75f5a64760ef9f704c6fd28e1e
Contents?: true
Size: 418 Bytes
Versions: 17
Compression:
Stored size: 418 Bytes
Contents
module Braintree class OAuthCredentials include BaseModule # :nodoc: attr_reader :access_token attr_reader :expires_at attr_reader :refresh_token attr_reader :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
17 entries across 17 versions & 1 rubygems