Class: NgrokAPI::Models::EndpointOAuthProvider
- Inherits:
-
Object
- Object
- NgrokAPI::Models::EndpointOAuthProvider
- Defined in:
- lib/ngrokapi/models/endpoint_o_auth_provider.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#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.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client: nil, attrs: {}) ⇒ EndpointOAuthProvider
constructor
A new instance of EndpointOAuthProvider.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ 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: nil, attrs: {}) @client = client @attrs = attrs @github = @attrs['github'] @facebook = @attrs['facebook'] @microsoft = @attrs['microsoft'] @google = @attrs['google'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
6 7 8 |
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 6 def attrs @attrs end |
#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 |
Instance Method Details
#==(other) ⇒ Object
22 23 24 |
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 22 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
30 31 32 |
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 30 def to_h @attrs.to_h end |
#to_s ⇒ Object
26 27 28 |
# File 'lib/ngrokapi/models/endpoint_o_auth_provider.rb', line 26 def to_s @attrs.to_s end |