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
#domain
Instance Method Summary
collapse
#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
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
|
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
|
#templates ⇒ 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_s ⇒ Object
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
|
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
|