Class: Twilio::REST::Chat::V2::ServiceContext::ChannelContext::WebhookPage
- Inherits:
- 
      Page
      
        - Object
- Page
- Twilio::REST::Chat::V2::ServiceContext::ChannelContext::WebhookPage
 
- Defined in:
- lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb
Constant Summary
Constants inherited from Page
Instance Method Summary collapse
- 
  
    
      #get_instance(payload)  ⇒ WebhookInstance 
    
    
  
  
  
  
  
  
  
  
  
    Build an instance of WebhookInstance. 
- 
  
    
      #initialize(version, response, solution)  ⇒ WebhookPage 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    Initialize the WebhookPage. 
- 
  
    
      #to_s  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Provide a user friendly representation. 
Methods inherited from Page
#each, #load_page, #next_page, #next_page_url, #previous_page, #previous_page_url, #process_response
Constructor Details
#initialize(version, response, solution) ⇒ WebhookPage
Initialize the WebhookPage
| 162 163 164 165 166 167 | # File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 162 def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end | 
Instance Method Details
#get_instance(payload) ⇒ WebhookInstance
Build an instance of WebhookInstance
| 173 174 175 176 177 178 179 180 | # File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 173 def get_instance(payload) WebhookInstance.new( @version, payload, service_sid: @solution[:service_sid], channel_sid: @solution[:channel_sid], ) end | 
#to_s ⇒ Object
Provide a user friendly representation
| 184 185 186 | # File 'lib/twilio-ruby/rest/chat/v2/service/channel/webhook.rb', line 184 def to_s '<Twilio.Chat.V2.WebhookPage>' end |