Sha256: db91ad8c08a664c09837637b1b0176cc7d62560d55d4166ea2d4ad63e2161f0b
Contents?: true
Size: 1.05 KB
Versions: 49
Compression:
Stored size: 1.05 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Proxy class V1 < Version ## # Initialize the V1 version of Proxy def initialize(domain) super @version = 'v1' @services = nil end ## # @param [String] sid The Twilio-provided string that uniquely identifies the # Service resource to fetch. # @return [Twilio::REST::Proxy::V1::ServiceContext] if sid was passed. # @return [Twilio::REST::Proxy::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::Proxy::V1>' end end end end end
Version data entries
49 entries across 49 versions & 1 rubygems