Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

QueueRequest

Properties

Name Type Description Notes
alias str Description for this Queue. Max length is 64 characters. [optional]
max_size int Maximum number of calls this queue can hold. Default is 100. Maximum is 1000. Note: Reducing the maxSize of a Queue causes the Queue to reject incoming requests until it shrinks below the new value of maxSize. [optional] [default to 100]

Example

from freeclimb.models.queue_request import QueueRequest

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

# convert the object into a dict
queue_request_dict = queue_request_instance.to_dict()
# create an instance of QueueRequest from a dict
queue_request_from_dict = QueueRequest.from_dict(queue_request_dict)

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