lib/twilio-ruby/rest/api/v2010/account/queue.rb in twilio-ruby-5.74.5 vs lib/twilio-ruby/rest/api/v2010/account/queue.rb in twilio-ruby-5.75.0

- old
+ new

@@ -110,11 +110,11 @@ ## # Create the QueueInstance # @param [String] friendly_name A descriptive string that you created to describe # this resource. It can be up to 64 characters long. # @param [String] max_size The maximum number of calls allowed to be in the queue. - # The default is 100. The maximum is 5000. + # The default is 1000. The maximum is 5000. # @return [QueueInstance] Created QueueInstance def create(friendly_name: nil, max_size: :unset) data = Twilio::Values.of({'FriendlyName' => friendly_name, 'MaxSize' => max_size, }) payload = @version.create('POST', @uri, data: data) @@ -191,11 +191,11 @@ ## # Update the QueueInstance # @param [String] friendly_name A descriptive string that you created to describe # this resource. It can be up to 64 characters long. # @param [String] max_size The maximum number of calls allowed to be in the queue. - # The default is 100. The maximum is 5000. + # The default is 1000. The maximum is 5000. # @return [QueueInstance] Updated QueueInstance def update(friendly_name: :unset, max_size: :unset) data = Twilio::Values.of({'FriendlyName' => friendly_name, 'MaxSize' => max_size, }) payload = @version.update('POST', @uri, data: data) @@ -354,10 +354,10 @@ ## # Update the QueueInstance # @param [String] friendly_name A descriptive string that you created to describe # this resource. It can be up to 64 characters long. # @param [String] max_size The maximum number of calls allowed to be in the queue. - # The default is 100. The maximum is 5000. + # The default is 1000. The maximum is 5000. # @return [QueueInstance] Updated QueueInstance def update(friendly_name: :unset, max_size: :unset) context.update(friendly_name: friendly_name, max_size: max_size, ) end \ No newline at end of file