Class: NgrokAPI::Models::EndpointOAuthGoogle

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/endpoint_o_auth_google.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:, result:) ⇒ EndpointOAuthGoogle

Returns a new instance of EndpointOAuthGoogle.



14
15
16
17
18
19
20
21
22
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 14

def initialize(client:, result:)
  @client = client
  @result = result
  @client_id = @result['client_id']
  @client_secret = @result['client_secret']
  @scopes = @result['scopes']
  @email_addresses = @result['email_addresses']
  @email_domains = @result['email_domains']
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def client
  @client
end

#client_idObject (readonly)

Returns the value of attribute client_id.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def client_id
  @client_id
end

#client_secretObject (readonly)

Returns the value of attribute client_secret.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def client_secret
  @client_secret
end

#email_addressesObject (readonly)

Returns the value of attribute email_addresses.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def email_addresses
  @email_addresses
end

#email_domainsObject (readonly)

Returns the value of attribute email_domains.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def email_domains
  @email_domains
end

#resultObject (readonly)

Returns the value of attribute result.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def result
  @result
end

#scopesObject (readonly)

Returns the value of attribute scopes.



6
7
8
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 6

def scopes
  @scopes
end

Instance Method Details

#==(other) ⇒ Object



24
25
26
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 24

def ==(other)
  @result == other.result
end

#to_sObject



28
29
30
# File 'lib/ngrokapi/models/endpoint_o_auth_google.rb', line 28

def to_s
  @result.to_s
end