Class: Twilio::REST::Verify::V2::ServiceContext::EntityContext::ChallengePage

Inherits:
Page
  • Object
show all
Defined in:
lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb

Constant Summary

Constants inherited from Page

Page::META_KEYS

Instance Method Summary collapse

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

Parameters:

  • version (Version)

    Version that contains the resource

  • response (Response)

    Response from the API

  • solution (Hash)

    Path solution for the resource



203
204
205
206
207
208
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb', line 203

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

Parameters:

  • payload (Hash)

    Payload response from the API

Returns:



214
215
216
217
218
219
220
221
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb', line 214

def get_instance(payload)
  ChallengeInstance.new(
      @version,
      payload,
      service_sid: @solution[:service_sid],
      identity: @solution[:identity],
  )
end

#to_sObject

Provide a user friendly representation



225
226
227
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb', line 225

def to_s
  '<Twilio.Verify.V2.ChallengePage>'
end