Class: NgrokAPI::Models::EndpointOAuthProvider

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:, result:) ⇒ EndpointOAuthProvider

Returns a new instance of EndpointOAuthProvider.



13
14
15
16
17
18
19
20
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 13

def initialize(client:, result:)
  @client = client
  @result = result
  @github = @result['github']
  @facebook = @result['facebook']
  @microsoft = @result['microsoft']
  @google = @result['google']
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



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

def client
  @client
end

#facebookObject (readonly)

Returns the value of attribute facebook.



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

def facebook
  @facebook
end

#githubObject (readonly)

Returns the value of attribute github.



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

def github
  @github
end

#googleObject (readonly)

Returns the value of attribute google.



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

def google
  @google
end

#microsoftObject (readonly)

Returns the value of attribute microsoft.



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

def microsoft
  @microsoft
end

#resultObject (readonly)

Returns the value of attribute result.



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

def result
  @result
end

Instance Method Details

#==(other) ⇒ Object



22
23
24
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 22

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

#to_sObject



26
27
28
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 26

def to_s
  @result.to_s
end