Class: Twilio::REST::Verify::V2

Inherits:
Twilio::REST::Version show all
Defined in:
lib/twilio-ruby/rest/verify/v2.rb,
lib/twilio-ruby/rest/verify/v2/form.rb,
lib/twilio-ruby/rest/verify/v2/service.rb,
lib/twilio-ruby/rest/verify/v2/template.rb,
lib/twilio-ruby/rest/verify/v2/service/entity.rb,
lib/twilio-ruby/rest/verify/v2/service/webhook.rb,
lib/twilio-ruby/rest/verify/v2/service/rate_limit.rb,
lib/twilio-ruby/rest/verify/v2/service/access_token.rb,
lib/twilio-ruby/rest/verify/v2/service/verification.rb,
lib/twilio-ruby/rest/verify/v2/verification_attempt.rb,
lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb,
lib/twilio-ruby/rest/verify/v2/service/entity/challenge.rb,
lib/twilio-ruby/rest/verify/v2/service/entity/new_factor.rb,
lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb,
lib/twilio-ruby/rest/verify/v2/service/verification_check.rb,
lib/twilio-ruby/rest/verify/v2/verification_attempts_summary.rb,
lib/twilio-ruby/rest/verify/v2/service/messaging_configuration.rb,
lib/twilio-ruby/rest/verify/v2/service/entity/challenge/notification.rb

Defined Under Namespace

Classes: FormContext, FormInstance, FormList, FormPage, ServiceContext, ServiceInstance, ServiceList, ServicePage, TemplateInstance, TemplateList, TemplatePage, VerificationAttemptContext, VerificationAttemptInstance, VerificationAttemptList, VerificationAttemptPage, VerificationAttemptsSummaryContext, VerificationAttemptsSummaryInstance, VerificationAttemptsSummaryList, VerificationAttemptsSummaryPage

Instance Attribute Summary

Attributes inherited from Twilio::REST::Version

#domain

Instance Method Summary collapse

Methods inherited from Twilio::REST::Version

#absolute_url, #create, #delete, #exception, #fetch, #page, #read_limits, #relative_uri, #request, #stream, #update

Constructor Details

#initialize(domain) ⇒ V2

Initialize the V2 version of Verify


15
16
17
18
19
20
21
22
23
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 15

def initialize(domain)
  super
  @version = 'v2'
  @forms = nil
  @services = nil
  @verification_attempts = nil
  @verification_attempts_summary = nil
  @templates = nil
end

Instance Method Details

#forms(form_type = :unset) ⇒ Twilio::REST::Verify::V2::FormContext, Twilio::REST::Verify::V2::FormList

Parameters:

  • form_type (form.FormTypes) (defaults to: :unset)

    The Type of this Form. Currently only `form-push` is supported.

Returns:


30
31
32
33
34
35
36
37
38
39
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 30

def forms(form_type=:unset)
  if form_type.nil?
      raise ArgumentError, 'form_type cannot be nil'
  end
  if form_type == :unset
      @forms ||= FormList.new self
  else
      FormContext.new(self, form_type)
  end
end

#services(sid = :unset) ⇒ Twilio::REST::Verify::V2::ServiceContext, Twilio::REST::Verify::V2::ServiceList

Parameters:

  • sid (String) (defaults to: :unset)

    The Twilio-provided string that uniquely identifies the Verification Service resource to fetch.

Returns:


46
47
48
49
50
51
52
53
54
55
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 46

def services(sid=:unset)
  if sid.nil?
      raise ArgumentError, 'sid cannot be nil'
  end
  if sid == :unset
      @services ||= ServiceList.new self
  else
      ServiceContext.new(self, sid)
  end
end

#templatesTwilio::REST::Verify::V2::TemplateContext

Returns:

  • (Twilio::REST::Verify::V2::TemplateContext)

80
81
82
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 80

def templates
  @templates ||= TemplateList.new self
end

#to_sObject

Provide a user friendly representation


86
87
88
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 86

def to_s
  '<Twilio::REST::Verify::V2>'
end

#verification_attempts(sid = :unset) ⇒ Twilio::REST::Verify::V2::VerificationAttemptContext, Twilio::REST::Verify::V2::VerificationAttemptList

Parameters:

  • sid (String) (defaults to: :unset)

    The unique SID identifier of a Verification Attempt

Returns:


61
62
63
64
65
66
67
68
69
70
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 61

def verification_attempts(sid=:unset)
  if sid.nil?
      raise ArgumentError, 'sid cannot be nil'
  end
  if sid == :unset
      @verification_attempts ||= VerificationAttemptList.new self
  else
      VerificationAttemptContext.new(self, sid)
  end
end

#verification_attempts_summaryTwilio::REST::Verify::V2::VerificationAttemptsSummaryContext


74
75
76
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 74

def verification_attempts_summary
  @verification_attempts_summary ||= VerificationAttemptsSummaryContext.new self
end