Class: Twilio::REST::Verify::V2::ServiceContext::EntityContext::ChallengePage
- Inherits:
-
Page
- Object
- Page
- Twilio::REST::Verify::V2::ServiceContext::EntityContext::ChallengePage
- Defined in:
- lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Constant Summary
Constants inherited from Page
Instance Method Summary collapse
-
#get_instance(payload) ⇒ ChallengeInstance
Build an instance of ChallengeInstance.
-
#initialize(version, response, solution) ⇒ ChallengePage
constructor
Initialize the ChallengePage.
-
#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) ⇒ ChallengePage
Initialize the ChallengePage
207 208 209 210 211 212 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb', line 207 def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end |
Instance Method Details
#get_instance(payload) ⇒ ChallengeInstance
Build an instance of ChallengeInstance
218 219 220 221 222 223 224 225 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb', line 218 def get_instance(payload) ChallengeInstance.new( @version, payload, service_sid: @solution[:service_sid], identity: @solution[:identity], ) end |
#to_s ⇒ Object
Provide a user friendly representation
229 230 231 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb', line 229 def to_s '<Twilio.Verify.V2.ChallengePage>' end |