class Square::OAuth2::AccessToken

Public Class Methods

new(*options) click to toggle source
Calls superclass method
# File lib/square/oauth2/access_token.rb, line 4
def initialize(*options)
  attributes = options.extract_options!
  attributes[:access_token] ||= options.first
  super attributes
end