@ourskyai/astro-api 1.3.4675 → 1.3.4784
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +8 -8
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +8 -8
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +8 -8
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/astro-api@1.3.
|
|
1
|
+
## @ourskyai/astro-api@1.3.4784
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @ourskyai/astro-api@1.3.
|
|
39
|
+
npm install @ourskyai/astro-api@1.3.4784 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -135,7 +135,7 @@ export interface DailyWeatherForecastItem {
|
|
|
135
135
|
*/
|
|
136
136
|
'weather'?: Array<DailyWeatherForecastItemWeatherInner>;
|
|
137
137
|
/**
|
|
138
|
-
* Wind speed
|
|
138
|
+
* Wind speed in m/s
|
|
139
139
|
* @type {number}
|
|
140
140
|
* @memberof DailyWeatherForecastItem
|
|
141
141
|
*/
|
|
@@ -153,13 +153,13 @@ export interface DailyWeatherForecastItem {
|
|
|
153
153
|
*/
|
|
154
154
|
'clouds'?: number;
|
|
155
155
|
/**
|
|
156
|
-
* Probability of precipitation
|
|
156
|
+
* Probability of precipitation in %
|
|
157
157
|
* @type {number}
|
|
158
158
|
* @memberof DailyWeatherForecastItem
|
|
159
159
|
*/
|
|
160
160
|
'pop'?: number;
|
|
161
161
|
/**
|
|
162
|
-
* Rain volume for the last 3 hours
|
|
162
|
+
* Rain volume for the last 3 hours in mm/h
|
|
163
163
|
* @type {number}
|
|
164
164
|
* @memberof DailyWeatherForecastItem
|
|
165
165
|
*/
|
|
@@ -172,25 +172,25 @@ export interface DailyWeatherForecastItem {
|
|
|
172
172
|
*/
|
|
173
173
|
export interface DailyWeatherForecastItemTemp {
|
|
174
174
|
/**
|
|
175
|
-
* Day temperature
|
|
175
|
+
* Day temperature in Celcius
|
|
176
176
|
* @type {number}
|
|
177
177
|
* @memberof DailyWeatherForecastItemTemp
|
|
178
178
|
*/
|
|
179
179
|
'day'?: number;
|
|
180
180
|
/**
|
|
181
|
-
* Minimum temperature
|
|
181
|
+
* Minimum temperature in Celcius
|
|
182
182
|
* @type {number}
|
|
183
183
|
* @memberof DailyWeatherForecastItemTemp
|
|
184
184
|
*/
|
|
185
185
|
'min'?: number;
|
|
186
186
|
/**
|
|
187
|
-
* Maximum temperature
|
|
187
|
+
* Maximum temperature in Celcius
|
|
188
188
|
* @type {number}
|
|
189
189
|
* @memberof DailyWeatherForecastItemTemp
|
|
190
190
|
*/
|
|
191
191
|
'max'?: number;
|
|
192
192
|
/**
|
|
193
|
-
* Night temperature
|
|
193
|
+
* Night temperature in Celcius
|
|
194
194
|
* @type {number}
|
|
195
195
|
* @memberof DailyWeatherForecastItemTemp
|
|
196
196
|
*/
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -113,7 +113,7 @@ export interface DailyWeatherForecastItem {
|
|
|
113
113
|
*/
|
|
114
114
|
'weather'?: Array<DailyWeatherForecastItemWeatherInner>;
|
|
115
115
|
/**
|
|
116
|
-
* Wind speed
|
|
116
|
+
* Wind speed in m/s
|
|
117
117
|
* @type {number}
|
|
118
118
|
* @memberof DailyWeatherForecastItem
|
|
119
119
|
*/
|
|
@@ -131,13 +131,13 @@ export interface DailyWeatherForecastItem {
|
|
|
131
131
|
*/
|
|
132
132
|
'clouds'?: number;
|
|
133
133
|
/**
|
|
134
|
-
* Probability of precipitation
|
|
134
|
+
* Probability of precipitation in %
|
|
135
135
|
* @type {number}
|
|
136
136
|
* @memberof DailyWeatherForecastItem
|
|
137
137
|
*/
|
|
138
138
|
'pop'?: number;
|
|
139
139
|
/**
|
|
140
|
-
* Rain volume for the last 3 hours
|
|
140
|
+
* Rain volume for the last 3 hours in mm/h
|
|
141
141
|
* @type {number}
|
|
142
142
|
* @memberof DailyWeatherForecastItem
|
|
143
143
|
*/
|
|
@@ -150,25 +150,25 @@ export interface DailyWeatherForecastItem {
|
|
|
150
150
|
*/
|
|
151
151
|
export interface DailyWeatherForecastItemTemp {
|
|
152
152
|
/**
|
|
153
|
-
* Day temperature
|
|
153
|
+
* Day temperature in Celcius
|
|
154
154
|
* @type {number}
|
|
155
155
|
* @memberof DailyWeatherForecastItemTemp
|
|
156
156
|
*/
|
|
157
157
|
'day'?: number;
|
|
158
158
|
/**
|
|
159
|
-
* Minimum temperature
|
|
159
|
+
* Minimum temperature in Celcius
|
|
160
160
|
* @type {number}
|
|
161
161
|
* @memberof DailyWeatherForecastItemTemp
|
|
162
162
|
*/
|
|
163
163
|
'min'?: number;
|
|
164
164
|
/**
|
|
165
|
-
* Maximum temperature
|
|
165
|
+
* Maximum temperature in Celcius
|
|
166
166
|
* @type {number}
|
|
167
167
|
* @memberof DailyWeatherForecastItemTemp
|
|
168
168
|
*/
|
|
169
169
|
'max'?: number;
|
|
170
170
|
/**
|
|
171
|
-
* Night temperature
|
|
171
|
+
* Night temperature in Celcius
|
|
172
172
|
* @type {number}
|
|
173
173
|
* @memberof DailyWeatherForecastItemTemp
|
|
174
174
|
*/
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -113,7 +113,7 @@ export interface DailyWeatherForecastItem {
|
|
|
113
113
|
*/
|
|
114
114
|
'weather'?: Array<DailyWeatherForecastItemWeatherInner>;
|
|
115
115
|
/**
|
|
116
|
-
* Wind speed
|
|
116
|
+
* Wind speed in m/s
|
|
117
117
|
* @type {number}
|
|
118
118
|
* @memberof DailyWeatherForecastItem
|
|
119
119
|
*/
|
|
@@ -131,13 +131,13 @@ export interface DailyWeatherForecastItem {
|
|
|
131
131
|
*/
|
|
132
132
|
'clouds'?: number;
|
|
133
133
|
/**
|
|
134
|
-
* Probability of precipitation
|
|
134
|
+
* Probability of precipitation in %
|
|
135
135
|
* @type {number}
|
|
136
136
|
* @memberof DailyWeatherForecastItem
|
|
137
137
|
*/
|
|
138
138
|
'pop'?: number;
|
|
139
139
|
/**
|
|
140
|
-
* Rain volume for the last 3 hours
|
|
140
|
+
* Rain volume for the last 3 hours in mm/h
|
|
141
141
|
* @type {number}
|
|
142
142
|
* @memberof DailyWeatherForecastItem
|
|
143
143
|
*/
|
|
@@ -150,25 +150,25 @@ export interface DailyWeatherForecastItem {
|
|
|
150
150
|
*/
|
|
151
151
|
export interface DailyWeatherForecastItemTemp {
|
|
152
152
|
/**
|
|
153
|
-
* Day temperature
|
|
153
|
+
* Day temperature in Celcius
|
|
154
154
|
* @type {number}
|
|
155
155
|
* @memberof DailyWeatherForecastItemTemp
|
|
156
156
|
*/
|
|
157
157
|
'day'?: number;
|
|
158
158
|
/**
|
|
159
|
-
* Minimum temperature
|
|
159
|
+
* Minimum temperature in Celcius
|
|
160
160
|
* @type {number}
|
|
161
161
|
* @memberof DailyWeatherForecastItemTemp
|
|
162
162
|
*/
|
|
163
163
|
'min'?: number;
|
|
164
164
|
/**
|
|
165
|
-
* Maximum temperature
|
|
165
|
+
* Maximum temperature in Celcius
|
|
166
166
|
* @type {number}
|
|
167
167
|
* @memberof DailyWeatherForecastItemTemp
|
|
168
168
|
*/
|
|
169
169
|
'max'?: number;
|
|
170
170
|
/**
|
|
171
|
-
* Night temperature
|
|
171
|
+
* Night temperature in Celcius
|
|
172
172
|
* @type {number}
|
|
173
173
|
* @memberof DailyWeatherForecastItemTemp
|
|
174
174
|
*/
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4784
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|