Class: Twilio::REST::Intelligence::V2::TranscriptContext::SentencePage
- Defined in:
- lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb
Constant Summary
Constants inherited from Page
Instance Method Summary collapse
-
#get_instance(payload) ⇒ SentenceInstance
Build an instance of SentenceInstance.
-
#initialize(version, response, solution) ⇒ SentencePage
constructor
Initialize the SentencePage.
-
#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) ⇒ SentencePage
Initialize the SentencePage
150 151 152 153 154 155 |
# File 'lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb', line 150 def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end |
Instance Method Details
#get_instance(payload) ⇒ SentenceInstance
Build an instance of SentenceInstance
161 162 163 |
# File 'lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb', line 161 def get_instance(payload) SentenceInstance.new(@version, payload, transcript_sid: @solution[:transcript_sid]) end |
#to_s ⇒ Object
Provide a user friendly representation
167 168 169 |
# File 'lib/twilio-ruby/rest/intelligence/v2/transcript/sentence.rb', line 167 def to_s '<Twilio.Intelligence.V2.SentencePage>' end |