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
* A constant string that can be used to identify this error class programmatically. An errorCode can have **details** to provide information in additional properties which are described with the code they apply to. They are of type string unless otherwise specified.
29
+
* A constant string that can be used to identify this error class programmatically.
30
+
*
31
+
* If additional information is available for an errorCode, it will be provided as key-value pairs with the parameter **details**. The keys available for a specific errorCode are documented directly with the errorCode. Unless stated otherwise, the values are of type string.
32
+
*
33
+
* As an example, the following errorCode provides one key-value pair in the **details**. The key is called **value**.
34
+
* * `GENERAL_INVALID_VALUE` - A parameter is set to an invalid value.
35
+
* * `value` - The invalid value.
30
36
*
31
37
* Note that additional errorCodes as well as the **details** of existing errorCodes may be added at any time. Furthermore, the **description** may change at any time.
* A constant string that can be used to identify this error class programmatically. An errorCode can have **details** to provide information in additional properties which are described with the code they apply to. They are of type string unless otherwise specified.
36
+
* A constant string that can be used to identify this error class programmatically.
37
+
*
38
+
* If additional information is available for an errorCode, it will be provided as key-value pairs with the parameter **details**. The keys available for a specific errorCode are documented directly with the errorCode. Unless stated otherwise, the values are of type string.
39
+
*
40
+
* As an example, the following errorCode provides one key-value pair in the **details**. The key is called **message**.
41
+
* * `GENERAL_UNAUTHENTICATED` - Invalid or missing authentication credentials.
42
+
* * `message` - An additional error message.
37
43
*
38
44
* Note that additional errorCodes as well as the **details** of existing errorCodes may be added at any time. Furthermore, the **description** may change at any time.
Copy file name to clipboardExpand all lines: typescript/models/Warning.ts
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
* Geocoding OSM
5
5
* With the Geocoding OSM service places can be searched based on OSM data. The search is based on an address, text input or a geographical position.
6
6
*
7
-
* The version of the OpenAPI document: 1.0
7
+
* The version of the OpenAPI document: 1.1
8
8
*
9
9
*
10
10
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,9 +26,19 @@ export interface Warning {
26
26
*/
27
27
description: string;
28
28
/**
29
-
* A constant string that can be used to identify this warning class programmatically. A warningCode can have **details** to provide information in additional properties which are described with the code they apply to. They are of type string unless otherwise specified.
29
+
* A constant string that can be used to identify this warning class programmatically.
30
30
*
31
-
* Note that additional warningCodes as well as the **details** of existing warningCodes may be added at any time. Furthermore, the **description** may change at any time.
31
+
* If additional information is available for a warningCode, it will be provided as key-value pairs with the parameter **details**. The keys available for a specific warningCode are documented directly with the warningCode. Unless stated otherwise, the values are of type string.
32
+
*
33
+
* As an example, the following warningCode provides four key-value pairs in the **details**.
34
+
* The keys are called **parameter**, **value**, **relatedParameter** and **relatedValue**.
35
+
* * `GENERAL_PARAMETER_IGNORED` - A parameter was ignored.
36
+
* * `parameter` - The ignored parameter.
37
+
* * `value` - The value of the ignored parameter.
38
+
* * `relatedParameter` - The parameter which caused the parameter in question to be ignored.
39
+
* * `relatedValue` - The value which caused the parameter in question to be ignored. Not present if the conflict is independent of the value.
40
+
*
41
+
* Note that additional warningCode as well as the **details** of existing warningCode may be added at any time. Furthermore, the **description** may change at any time.
32
42
*
33
43
* * `GEOCODING_TIMEOUT` - The search ran into a timeout while trying to find results.
34
44
* * `GEOCODING_INPUT_TOO_LONG` - The input was rejected because it is too long.
0 commit comments