Class: NgrokAPI::Models::EndpointOAuthProvider
- Inherits:
-
Object
- Object
- NgrokAPI::Models::EndpointOAuthProvider
- Defined in:
- lib/ngrokapi/models/endpoint_o_auth_provider.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#facebook ⇒ Object
readonly
Returns the value of attribute facebook.
-
#github ⇒ Object
readonly
Returns the value of attribute github.
-
#google ⇒ Object
readonly
Returns the value of attribute google.
-
#microsoft ⇒ Object
readonly
Returns the value of attribute microsoft.
-
#result ⇒ Object
readonly
Returns the value of attribute result.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client:, result:) ⇒ EndpointOAuthProvider
constructor
A new instance of EndpointOAuthProvider.
- #to_s ⇒ Object
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
#client ⇒ Object (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 |
#facebook ⇒ Object (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 |
#github ⇒ Object (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 |
#google ⇒ Object (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 |
#microsoft ⇒ Object (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 |
#result ⇒ Object (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_s ⇒ Object
26 27 28 |
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 26 def to_s @result.to_s end |