Class: Twilio::REST::Numbers::V1::WebhookList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Numbers::V1::WebhookList
- Defined in:
- lib/twilio-ruby/rest/numbers/v1/webhook.rb
Instance Method Summary collapse
-
#fetch ⇒ WebhookInstance
Fetch the WebhookInstance.
-
#initialize(version) ⇒ WebhookList
constructor
Initialize the WebhookList.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version) ⇒ WebhookList
Initialize the WebhookList
26 27 28 29 30 31 32 |
# File 'lib/twilio-ruby/rest/numbers/v1/webhook.rb', line 26 def initialize(version) super(version) # Path Solution @solution = { } @uri = "/Porting/Configuration/Webhook" end |
Instance Method Details
#fetch ⇒ WebhookInstance
Fetch the WebhookInstance
36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/twilio-ruby/rest/numbers/v1/webhook.rb', line 36 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) WebhookInstance.new( @version, payload, ) end |
#to_s ⇒ Object
Provide a user friendly representation
55 56 57 |
# File 'lib/twilio-ruby/rest/numbers/v1/webhook.rb', line 55 def to_s '#<Twilio.Numbers.V1.WebhookList>' end |