Sha256: 7ecfb373461d5641b8fae0ea881ed3bfcca556337fbdf05f2f589ca2c04edffd
Contents?: true
Size: 1.64 KB
Versions: 3
Compression:
Stored size: 1.64 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Verify class V2 < Version ## # Initialize the V2 version of Verify def initialize(domain) super @version = 'v2' @forms = nil @services = nil end ## # @param [form.FormTypes] form_type The Type of this Form. One of `form-app-push`, # `form-sms` or `form-totp`. # @return [Twilio::REST::Verify::V2::FormContext] if form_type was passed. # @return [Twilio::REST::Verify::V2::FormList] 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 ## # @param [String] sid The Twilio-provided string that uniquely identifies the # Verification Service resource to fetch. # @return [Twilio::REST::Verify::V2::ServiceContext] if sid was passed. # @return [Twilio::REST::Verify::V2::ServiceList] 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 ## # Provide a user friendly representation def to_s '<Twilio::REST::Verify::V2>' end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.38.0 | lib/twilio-ruby/rest/verify/v2.rb |
twilio-ruby-5.37.0 | lib/twilio-ruby/rest/verify/v2.rb |
twilio-ruby-5.36.0 | lib/twilio-ruby/rest/verify/v2.rb |