fix dns qp marker parameter name

Fix typo "market" where "marker" should be.

Change-Id: Ic9f94727b6abb33619bde96a610fedad7cc12398
This commit is contained in:
Artem Goncharov
2025-05-27 15:34:50 +02:00
parent 303001e15e
commit eb390639ab

View File

@@ -281,7 +281,7 @@ ZONE_SHARES_LIST_PARAMETERS: dict[str, Any] = {
},
"marker": {
"in": "query",
"name": "market",
"name": "marker",
"description": "The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.",
"schema": {"type": "string", "format": "uuid"},
},
@@ -315,7 +315,7 @@ ZONES_LIST_PARAMETERS: dict[str, Any] = {
},
"marker": {
"in": "query",
"name": "market",
"name": "marker",
"description": "The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.",
"schema": {"type": "string", "format": "uuid"},
},
@@ -570,7 +570,7 @@ ZONE_RECORDSETS_LIST_PARAMETERS: dict[str, Any] = {
},
"marker": {
"in": "query",
"name": "market",
"name": "marker",
"description": "The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request.",
"schema": {"type": "string", "format": "uuid"},
},