lib/twilio-ruby/rest/preview.rb in twilio-ruby-5.28.0 vs lib/twilio-ruby/rest/preview.rb in twilio-ruby-5.29.0
- old
+ new
@@ -126,28 +126,28 @@
def hosted_number_orders(sid=:unset)
self.hosted_numbers.hosted_number_orders(sid)
end
##
+ # @param [String] sid A 34 character string that uniquely identifies this Add-on.
+ # @return [Twilio::REST::Preview::Marketplace::AvailableAddOnInstance] if sid was passed.
+ # @return [Twilio::REST::Preview::Marketplace::AvailableAddOnList]
+ def available_add_ons(sid=:unset)
+ self.marketplace.available_add_ons(sid)
+ end
+
+ ##
# @param [String] sid 34 character string that uniquely identifies the Add-on.
# This Sid can also be found in the Console on that specific Add-ons page as the
# 'Available Add-on Sid'.
# @return [Twilio::REST::Preview::Marketplace::InstalledAddOnInstance] if sid was passed.
# @return [Twilio::REST::Preview::Marketplace::InstalledAddOnList]
def installed_add_ons(sid=:unset)
self.marketplace.installed_add_ons(sid)
end
##
- # @param [String] sid A 34 character string that uniquely identifies this Add-on.
- # @return [Twilio::REST::Preview::Marketplace::AvailableAddOnInstance] if sid was passed.
- # @return [Twilio::REST::Preview::Marketplace::AvailableAddOnList]
- def available_add_ons(sid=:unset)
- self.marketplace.available_add_ons(sid)
- end
-
- ##
# @param [String] sid The sid
# @return [Twilio::REST::Preview::Sync::ServiceInstance] if sid was passed.
# @return [Twilio::REST::Preview::Sync::ServiceList]
def services(sid=:unset)
self.sync.services(sid)
@@ -191,30 +191,30 @@
def branded_calls
self.trusted_comms.branded_calls()
end
##
- # @return [Twilio::REST::Preview::TrustedComms::DeviceInstance]
- def devices
- self.trusted_comms.devices()
+ # @return [Twilio::REST::Preview::TrustedComms::CpsInstance]
+ def cps
+ self.trusted_comms.cps()
end
##
- # @return [Twilio::REST::Preview::TrustedComms::PhoneCallInstance]
- def phone_calls
- self.trusted_comms.phone_calls()
- end
-
- ##
# @return [Twilio::REST::Preview::TrustedComms::CurrentCallInstance]
def current_calls
self.trusted_comms.current_calls()
end
##
- # @return [Twilio::REST::Preview::TrustedComms::CpsInstance]
- def cps
- self.trusted_comms.cps()
+ # @return [Twilio::REST::Preview::TrustedComms::DeviceInstance]
+ def devices
+ self.trusted_comms.devices()
+ end
+
+ ##
+ # @return [Twilio::REST::Preview::TrustedComms::PhoneCallInstance]
+ def phone_calls
+ self.trusted_comms.phone_calls()
end
##
# Provide a user friendly representation
def to_s
\ No newline at end of file