Class: Twilio::REST::Api::V2010::AccountContext::QueueInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/queue.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil, sid: nil) ⇒ QueueInstance

Initialize the QueueInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that created this Queue resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 287

def initialize(version, payload , account_sid: nil, sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
        'current_size' => payload['current_size'] == nil ? payload['current_size'] : payload['current_size'].to_i,
        'friendly_name' => payload['friendly_name'],
        'uri' => payload['uri'],
        'account_sid' => payload['account_sid'],
        'average_wait_time' => payload['average_wait_time'] == nil ? payload['average_wait_time'] : payload['average_wait_time'].to_i,
        'sid' => payload['sid'],
        'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
        'max_size' => payload['max_size'] == nil ? payload['max_size'] : payload['max_size'].to_i,
    }

    # Context
    @instance_context = nil
    @params = { 'account_sid' =>   ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created this Queue resource.

Returns:



345
346
347
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 345

def 
    @properties['account_sid']
end

#average_wait_timeString

Returns The average wait time in seconds of the members in this queue. This is calculated at the time of the request.

Returns:

  • (String)

    The average wait time in seconds of the members in this queue. This is calculated at the time of the request.



351
352
353
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 351

def average_wait_time
    @properties['average_wait_time']
end

#contextQueueContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



312
313
314
315
316
317
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 312

def context
    unless @instance_context
        @instance_context = QueueContext.new(@version , @params['account_sid'], @params['sid'])
    end
    @instance_context
end

#current_sizeString

Returns The number of calls currently in the queue.

Returns:

  • (String)

    The number of calls currently in the queue.



327
328
329
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 327

def current_size
    @properties['current_size']
end

#date_createdTime

Returns The date and time in GMT that this resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



363
364
365
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 363

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date and time in GMT that this resource was last updated, specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



321
322
323
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 321

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the QueueInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



376
377
378
379
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 376

def delete

    context.delete
end

#fetchQueueInstance

Fetch the QueueInstance

Returns:



384
385
386
387
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 384

def fetch

    context.fetch
end

#friendly_nameString

Returns A string that you assigned to describe this resource.

Returns:

  • (String)

    A string that you assigned to describe this resource.



333
334
335
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 333

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



421
422
423
424
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 421

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Api.V2010.QueueInstance #{values}>"
end

#max_sizeString

Returns The maximum number of calls that can be in the queue. The default is 1000 and the maximum is 5000.

Returns:

  • (String)

    The maximum number of calls that can be in the queue. The default is 1000 and the maximum is 5000.



369
370
371
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 369

def max_size
    @properties['max_size']
end

#membersmembers

Access the members

Returns:



408
409
410
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 408

def members
    context.members
end

#sidString

Returns The unique string that that we created to identify this Queue resource.

Returns:

  • (String)

    The unique string that that we created to identify this Queue resource.



357
358
359
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 357

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



414
415
416
417
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 414

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Api.V2010.QueueInstance #{values}>"
end

#update(friendly_name: :unset, max_size: :unset) ⇒ QueueInstance

Update the QueueInstance

Parameters:

  • friendly_name (String) (defaults to: :unset)

    A descriptive string that you created to describe this resource. It can be up to 64 characters long.

  • max_size (String) (defaults to: :unset)

    The maximum number of calls allowed to be in the queue. The default is 1000. The maximum is 5000.

Returns:



394
395
396
397
398
399
400
401
402
403
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 394

def update(
    friendly_name: :unset, 
    max_size: :unset
)

    context.update(
        friendly_name: friendly_name, 
        max_size: max_size, 
    )
end

#uriString

Returns The URI of this resource, relative to ‘api.twilio.com`.

Returns:

  • (String)

    The URI of this resource, relative to ‘api.twilio.com`.



339
340
341
# File 'lib/twilio-ruby/rest/api/v2010/account/queue.rb', line 339

def uri
    @properties['uri']
end