Class: Twilio::REST::Numbers::V1::WebhookList

Inherits:
ListResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/numbers/v1/webhook.rb

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ WebhookList

Initialize the WebhookList

Parameters:

  • version (Version)

    Version that contains the resource



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

#fetchWebhookInstance

Fetch the WebhookInstance

Returns:



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_sObject

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