Sha256: 9bdc2dd35bc5db4f36cf7324f97d2df03478c7c0fd522d564ec35389e042afcd
Contents?: true
Size: 417 Bytes
Versions: 29
Compression:
Stored size: 417 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
29 entries across 29 versions & 1 rubygems