You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"summary": "QueryTickets gets a list of Tickets that match all Filters of the input Pool.\n - If the Pool contains no Filters, QueryTickets will return all Tickets in the state storage.\nQueryTickets pages the Tickets by `queryPageSize` and stream back responses.\n - queryPageSize is default to 1000 if not set, and has a minimum of 10 and maximum of 10000.",
@@ -335,6 +384,28 @@
335
384
},
336
385
"description": "BETA FEATURE WARNING: This Request messages are not finalized and \nstill subject to possible change or removal."
337
386
},
387
+
"openmatchQueryExpiredTicketsRequest": {
388
+
"type": "object",
389
+
"properties": {
390
+
"limit": {
391
+
"type": "integer",
392
+
"format": "int32"
393
+
}
394
+
}
395
+
},
396
+
"openmatchQueryExpiredTicketsResponse": {
397
+
"type": "object",
398
+
"properties": {
399
+
"tickets": {
400
+
"type": "array",
401
+
"items": {
402
+
"type": "object",
403
+
"$ref": "#/definitions/openmatchTicket"
404
+
},
405
+
"description": "Tickets that meet all the filtering criteria requested by the pool."
0 commit comments