Sha256: aa50faa8789d34e2970511e4874028dacc317f35c5d238a598610caea8ccf347
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Authy class V1 < Version ## # Initialize the V1 version of Authy def initialize(domain) super @version = 'v1' @forms = nil @services = nil end ## # @param [form.FormType] form_type The Form Type of this Form. One of # `form-app-push`, `form-sms` or `form-totp`. # @return [Twilio::REST::Authy::V1::FormContext] if form_type was passed. # @return [Twilio::REST::Authy::V1::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 A 34 character string that uniquely identifies this Service. # @return [Twilio::REST::Authy::V1::ServiceContext] if sid was passed. # @return [Twilio::REST::Authy::V1::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::Authy::V1>' end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.15.2 | lib/twilio-ruby/rest/authy/v1.rb |