class Borneo::AuthorizedProxy
Attributes
access_token[R]
client[R]
refresh_token[R]
Public Class Methods
new(client, access_token, refresh_token)
click to toggle source
# File lib/borneo/authorized_proxy.rb, line 7 def initialize(client, access_token, refresh_token) @client = client @access_token = access_token @refresh_token = refresh_token end
Public Instance Methods
google_client()
click to toggle source
# File lib/borneo/authorized_proxy.rb, line 33 def google_client @client.google_client end
service(name, version)
click to toggle source
# File lib/borneo/authorized_proxy.rb, line 13 def service(name, version) Borneo::Service.new(self, name, version) end