Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2 KB

File metadata and controls

39 lines (30 loc) · 2 KB

QueueResult

Properties

Name Type Description Notes
uri str The URI for this resource, relative to /apiserver. [optional]
date_created str The date that this resource was created (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). [optional]
date_updated str The date that this resource was last updated (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). [optional]
revision int Revision count for the resource. This count is set to 1 on creation and is incremented every time it is updated. [optional]
account_id str ID of the account that created this Queue. [optional]
queue_id str A string that uniquely identifies this Queue resource. [optional]
alias str A description for this Queue. [optional]
max_size int The maximum number of Calls permitted in the Queue. Default is 100. Maximum is 1000. [optional]
current_size int Count of Calls currently in the Queue. [optional]
average_queue_removal_time int The average amount of time (in seconds) for a call to be removed from the queue. [optional]
subresource_uris object List of subresources for this Queue (which includes Queue members). [optional]

Example

from freeclimb.models.queue_result import QueueResult

# TODO update the JSON string below
json = "{}"
# create an instance of QueueResult from a JSON string
queue_result_instance = QueueResult.from_json(json)
# print the JSON string representation of the object
print(QueueResult.to_json())

# convert the object into a dict
queue_result_dict = queue_result_instance.to_dict()
# create an instance of QueueResult from a dict
queue_result_from_dict = QueueResult.from_dict(queue_result_dict)

[Back to Model list] [Back to API list] [Back to README]