# File lib/fog/brightbox/oauth2.rb, line 43
        def initialize(client_id, client_secret, options = {})
          @client_id     = client_id
          @client_secret = client_secret
          @username      = options[:username]
          @password      = options[:password]
          @access_token  = options[:access_token]
          @refresh_token = options[:refresh_token]
          @expires_in    = options[:expires_in]
        end