Class: NgrokAPI::Models::EventSource
- Inherits:
-
Object
- Object
- NgrokAPI::Models::EventSource
- Defined in:
- lib/ngrokapi/models/event_source.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#fields ⇒ Object
readonly
Returns the value of attribute fields.
-
#filter ⇒ Object
readonly
Returns the value of attribute filter.
-
#result ⇒ Object
readonly
Returns the value of attribute result.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client:, result:) ⇒ EventSource
constructor
A new instance of EventSource.
- #to_s ⇒ Object
Constructor Details
#initialize(client:, result:) ⇒ EventSource
Returns a new instance of EventSource.
13 14 15 16 17 18 19 20 |
# File 'lib/ngrokapi/models/event_source.rb', line 13 def initialize(client:, result:) @client = client @result = result @type = @result['type'] @filter = @result['filter'] @fields = @result['fields'] @uri = @result['uri'] end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
6 7 8 |
# File 'lib/ngrokapi/models/event_source.rb', line 6 def client @client end |
#fields ⇒ Object (readonly)
Returns the value of attribute fields.
6 7 8 |
# File 'lib/ngrokapi/models/event_source.rb', line 6 def fields @fields end |
#filter ⇒ Object (readonly)
Returns the value of attribute filter.
6 7 8 |
# File 'lib/ngrokapi/models/event_source.rb', line 6 def filter @filter end |
#result ⇒ Object (readonly)
Returns the value of attribute result.
6 7 8 |
# File 'lib/ngrokapi/models/event_source.rb', line 6 def result @result end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
6 7 8 |
# File 'lib/ngrokapi/models/event_source.rb', line 6 def type @type end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
6 7 8 |
# File 'lib/ngrokapi/models/event_source.rb', line 6 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
22 23 24 |
# File 'lib/ngrokapi/models/event_source.rb', line 22 def ==(other) @result == other.result end |
#to_s ⇒ Object
26 27 28 |
# File 'lib/ngrokapi/models/event_source.rb', line 26 def to_s @result.to_s end |