Sha256: 928900983082fb340c4f4e4d46bce61ccf8068fdc796cf2bfa19ffcfe7f1c7cd
Contents?: true
Size: 973 Bytes
Versions: 13
Compression:
Stored size: 973 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module REST class Messaging class V1 < Version ## # Initialize the V1 version of Messaging def initialize(domain) super @version = 'v1' @services = nil end ## # @param [String] sid The sid # @return [Twilio::REST::Messaging::V1::ServiceContext] if sid was passed. # @return [Twilio::REST::Messaging::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::Messaging::V1>' end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems