Class: NgrokAPI::Models::EventSource
- Inherits:
-
Object
- Object
- NgrokAPI::Models::EventSource
- Defined in:
- lib/ngrokapi/models/event_source.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#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: nil, attrs: {}) ⇒ EventSource
constructor
A new instance of EventSource.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ EventSource
Returns a new instance of EventSource.
15 16 17 18 19 20 21 22 |
# File 'lib/ngrokapi/models/event_source.rb', line 15 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @type = @attrs['type'] unless @attrs['uri'].nil? @uri = URI(@attrs['uri']) end end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
10 11 12 |
# File 'lib/ngrokapi/models/event_source.rb', line 10 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
10 11 12 |
# File 'lib/ngrokapi/models/event_source.rb', line 10 def client @client end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
10 11 12 |
# File 'lib/ngrokapi/models/event_source.rb', line 10 def type @type end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
10 11 12 |
# File 'lib/ngrokapi/models/event_source.rb', line 10 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
24 25 26 |
# File 'lib/ngrokapi/models/event_source.rb', line 24 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
32 33 34 |
# File 'lib/ngrokapi/models/event_source.rb', line 32 def to_h @attrs.to_h end |
#to_s ⇒ Object
28 29 30 |
# File 'lib/ngrokapi/models/event_source.rb', line 28 def to_s @attrs.to_s end |