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/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/service/entity/factor.rb,
lib/twilio-ruby/rest/verify/v2/service/entity/challenge.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/service/messaging_configuration.rb

Defined Under Namespace

Classes: FormContext, FormInstance, FormList, FormPage, ServiceContext, ServiceInstance, ServiceList, ServicePage

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
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 15

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

Instance Method Details

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



27
28
29
30
31
32
33
34
35
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 27

def forms(form_type=:unset)
  if form_type.nil?
    raise ArgumentError, 'form_type cannot be nil'
  elsif 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



42
43
44
45
46
47
48
49
50
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 42

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

#to_sObject

Provide a user friendly representation



54
55
56
# File 'lib/twilio-ruby/rest/verify/v2.rb', line 54

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