Class: NgrokAPI::Models::EventSubscription
- Inherits:
-
Object
- Object
- NgrokAPI::Models::EventSubscription
- Defined in:
- lib/ngrokapi/models/event_subscription.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#destinations ⇒ Object
readonly
Returns the value of attribute destinations.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#sources ⇒ Object
readonly
Returns the value of attribute sources.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#delete ⇒ Object
Delete an Event Subscription.
-
#initialize(client: nil, attrs: {}) ⇒ EventSubscription
constructor
A new instance of EventSubscription.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ EventSubscription
Returns a new instance of EventSubscription.
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 16 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @id = @attrs['id'] @uri = @attrs['uri'] @created_at = @attrs['created_at'] @metadata = @attrs['metadata'] @description = @attrs['description'] @sources = @attrs['sources'] @destinations = @attrs['destinations'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def client @client end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def description @description end |
#destinations ⇒ Object (readonly)
Returns the value of attribute destinations.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def destinations @destinations end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def id @id end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def @metadata end |
#sources ⇒ Object (readonly)
Returns the value of attribute sources.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def sources @sources end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
6 7 8 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 6 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
28 29 30 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 28 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete an Event Subscription.
44 45 46 47 48 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 44 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
36 37 38 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 36 def to_h @attrs.to_h end |
#to_s ⇒ Object
32 33 34 |
# File 'lib/ngrokapi/models/event_subscription.rb', line 32 def to_s @attrs.to_s end |