Skip to content

Commit f2002b2

Browse files
authored
[Python] remove default value from being fallback to example (#2213)
* remove example fallback * reset test case
1 parent 163b004 commit f2002b2

File tree

59 files changed

+77
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+77
-105
lines changed

modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -614,14 +614,6 @@ public String toDefaultValue(Schema p) {
614614
else
615615
return "True";
616616
}
617-
// include fallback to example, default defined as server only
618-
// example is not defined as server only
619-
if (p.getExample() != null) {
620-
if (Boolean.valueOf(p.getExample().toString()) == false)
621-
return "False";
622-
else
623-
return "True";
624-
}
625617
} else if (ModelUtils.isDateSchema(p)) {
626618
// TODO
627619
} else if (ModelUtils.isDateTimeSchema(p)) {
@@ -630,48 +622,24 @@ public String toDefaultValue(Schema p) {
630622
if (p.getDefault() != null) {
631623
return p.getDefault().toString();
632624
}
633-
// default numbers are not yet returned by v2 spec openAPI results
634-
// https://github.com/swagger-api/swagger-parser/issues/971
635-
// include fallback to example, default defined as server only
636-
// example is not defined as server only
637625
if (p.getExample() != null) {
638626
return p.getExample().toString();
639627
}
640628
} else if (ModelUtils.isIntegerSchema(p)) {
641629
if (p.getDefault() != null) {
642630
return p.getDefault().toString();
643631
}
644-
// default integers are not yet returned by v2 spec openAPI results
645-
// https://github.com/swagger-api/swagger-parser/issues/971
646-
// include fallback to example, default defined as server only
647-
// example is not defined as server only
648-
if (p.getExample() != null) {
649-
return p.getExample().toString();
650-
}
651632
} else if (ModelUtils.isStringSchema(p)) {
652633
if (p.getDefault() != null) {
653634
if (Pattern.compile("\r\n|\r|\n").matcher((String) p.getDefault()).find())
654635
return "'''" + p.getDefault() + "'''";
655636
else
656637
return "'" + p.getDefault() + "'";
657638
}
658-
// include fallback to example, default defined as server only
659-
// example is not defined as server only
660-
if (p.getExample() != null) {
661-
if (Pattern.compile("\r\n|\r|\n").matcher((String) p.getExample()).find())
662-
return "'''" + p.getExample() + "'''";
663-
else
664-
return "'" + p.getExample() + "'";
665-
}
666639
} else if (ModelUtils.isArraySchema(p)) {
667640
if (p.getDefault() != null) {
668641
return p.getDefault().toString();
669642
}
670-
// include fallback to example, default defined as server only
671-
// example is not defined as server only
672-
if (p.getExample() != null) {
673-
return p.getExample().toString();
674-
}
675643
}
676644

677645
return null;

modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,6 +1344,7 @@ definitions:
13441344
uuid:
13451345
type: string
13461346
format: uuid
1347+
example: 72f98069-206d-4f12-9f12-3d1e525a8e84
13471348
password:
13481349
type: string
13491350
format: password

modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,6 +1373,7 @@ components:
13731373
uuid:
13741374
type: string
13751375
format: uuid
1376+
example: 72f98069-206d-4f12-9f12-3d1e525a8e84
13761377
password:
13771378
type: string
13781379
format: password

samples/client/petstore/go/go-petstore/api/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,6 +1422,7 @@ components:
14221422
format: date-time
14231423
type: string
14241424
uuid:
1425+
example: 72f98069-206d-4f12-9f12-3d1e525a8e84
14251426
format: uuid
14261427
type: string
14271428
password:

samples/client/petstore/haskell-http-client/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,6 +1422,7 @@ components:
14221422
format: date-time
14231423
type: string
14241424
uuid:
1425+
example: 72f98069-206d-4f12-9f12-3d1e525a8e84
14251426
format: uuid
14261427
type: string
14271428
password:

samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/feign10x/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/jersey1/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/jersey2-java6/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public FormatTest uuid(UUID uuid) {
286286
* Get uuid
287287
* @return uuid
288288
**/
289-
@ApiModelProperty(value = "")
289+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
290290
public UUID getUuid() {
291291
return uuid;
292292
}

samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/jersey2/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ public FormatTest uuid(UUID uuid) {
307307
* Get uuid
308308
* @return uuid
309309
**/
310-
@ApiModelProperty(value = "")
310+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
311311
public UUID getUuid() {
312312
return uuid;
313313
}

samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public FormatTest uuid(UUID uuid) {
303303
* Get uuid
304304
* @return uuid
305305
**/
306-
@ApiModelProperty(value = "")
306+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
307307
public UUID getUuid() {
308308
return uuid;
309309
}

samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public FormatTest uuid(UUID uuid) {
303303
* Get uuid
304304
* @return uuid
305305
**/
306-
@ApiModelProperty(value = "")
306+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
307307
public UUID getUuid() {
308308
return uuid;
309309
}

samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public FormatTest uuid(UUID uuid) {
318318
* Get uuid
319319
* @return uuid
320320
**/
321-
@ApiModelProperty(value = "")
321+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
322322
public UUID getUuid() {
323323
return uuid;
324324
}

samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/retrofit/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public FormatTest uuid(UUID uuid) {
303303
* Get uuid
304304
* @return uuid
305305
**/
306-
@ApiModelProperty(value = "")
306+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
307307
public UUID getUuid() {
308308
return uuid;
309309
}

samples/client/petstore/java/retrofit2-play24/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public FormatTest uuid(UUID uuid) {
297297
* @return uuid
298298
**/
299299
@Valid
300-
@ApiModelProperty(value = "")
300+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
301301
public UUID getUuid() {
302302
return uuid;
303303
}

samples/client/petstore/java/retrofit2-play25/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public FormatTest uuid(UUID uuid) {
297297
* @return uuid
298298
**/
299299
@Valid
300-
@ApiModelProperty(value = "")
300+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
301301
public UUID getUuid() {
302302
return uuid;
303303
}

samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public FormatTest uuid(UUID uuid) {
297297
* @return uuid
298298
**/
299299
@Valid
300-
@ApiModelProperty(value = "")
300+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
301301
public UUID getUuid() {
302302
return uuid;
303303
}

samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public FormatTest uuid(UUID uuid) {
303303
* Get uuid
304304
* @return uuid
305305
**/
306-
@ApiModelProperty(value = "")
306+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
307307
public UUID getUuid() {
308308
return uuid;
309309
}

samples/client/petstore/java/retrofit2rx/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public FormatTest uuid(UUID uuid) {
303303
* Get uuid
304304
* @return uuid
305305
**/
306-
@ApiModelProperty(value = "")
306+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
307307
public UUID getUuid() {
308308
return uuid;
309309
}

samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public FormatTest uuid(UUID uuid) {
303303
* Get uuid
304304
* @return uuid
305305
**/
306-
@ApiModelProperty(value = "")
306+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
307307
public UUID getUuid() {
308308
return uuid;
309309
}

samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public FormatTest uuid(UUID uuid) {
287287
* Get uuid
288288
* @return uuid
289289
**/
290-
@ApiModelProperty(value = "")
290+
@ApiModelProperty(example = "72f98069-206d-4f12-9f12-3d1e525a8e84", value = "")
291291
public UUID getUuid() {
292292
return uuid;
293293
}

samples/client/petstore/python/docs/Pet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **int** | | [optional]
77
**category** | [**Category**](Category.md) | | [optional]
8-
**name** | **str** | | [default to 'doggie']
8+
**name** | **str** | |
99
**photo_urls** | **list[str]** | |
1010
**tags** | [**list[Tag]**](Tag.md) | | [optional]
1111
**status** | **str** | pet status in the store | [optional]

samples/client/petstore/python/docs/TypeHolderExample.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**string_item** | **str** | | [default to 'what']
6+
**string_item** | **str** | |
77
**number_item** | **float** | | [default to 1.234]
8-
**integer_item** | **int** | | [default to -2]
9-
**bool_item** | **bool** | | [default to True]
10-
**array_item** | **list[int]** | | [default to [0, 1, 2, 3]]
8+
**integer_item** | **int** | |
9+
**bool_item** | **bool** | |
10+
**array_item** | **list[int]** | |
1111

1212
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1313

samples/client/petstore/python/docs/XmlItem.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,33 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**attribute_string** | **str** | | [optional] [default to 'string']
6+
**attribute_string** | **str** | | [optional]
77
**attribute_number** | **float** | | [optional] [default to 1.234]
8-
**attribute_integer** | **int** | | [optional] [default to -2]
9-
**attribute_boolean** | **bool** | | [optional] [default to True]
8+
**attribute_integer** | **int** | | [optional]
9+
**attribute_boolean** | **bool** | | [optional]
1010
**wrapped_array** | **list[int]** | | [optional]
11-
**name_string** | **str** | | [optional] [default to 'string']
11+
**name_string** | **str** | | [optional]
1212
**name_number** | **float** | | [optional] [default to 1.234]
13-
**name_integer** | **int** | | [optional] [default to -2]
14-
**name_boolean** | **bool** | | [optional] [default to True]
13+
**name_integer** | **int** | | [optional]
14+
**name_boolean** | **bool** | | [optional]
1515
**name_array** | **list[int]** | | [optional]
1616
**name_wrapped_array** | **list[int]** | | [optional]
17-
**prefix_string** | **str** | | [optional] [default to 'string']
17+
**prefix_string** | **str** | | [optional]
1818
**prefix_number** | **float** | | [optional] [default to 1.234]
19-
**prefix_integer** | **int** | | [optional] [default to -2]
20-
**prefix_boolean** | **bool** | | [optional] [default to True]
19+
**prefix_integer** | **int** | | [optional]
20+
**prefix_boolean** | **bool** | | [optional]
2121
**prefix_array** | **list[int]** | | [optional]
2222
**prefix_wrapped_array** | **list[int]** | | [optional]
23-
**namespace_string** | **str** | | [optional] [default to 'string']
23+
**namespace_string** | **str** | | [optional]
2424
**namespace_number** | **float** | | [optional] [default to 1.234]
25-
**namespace_integer** | **int** | | [optional] [default to -2]
26-
**namespace_boolean** | **bool** | | [optional] [default to True]
25+
**namespace_integer** | **int** | | [optional]
26+
**namespace_boolean** | **bool** | | [optional]
2727
**namespace_array** | **list[int]** | | [optional]
2828
**namespace_wrapped_array** | **list[int]** | | [optional]
29-
**prefix_ns_string** | **str** | | [optional] [default to 'string']
29+
**prefix_ns_string** | **str** | | [optional]
3030
**prefix_ns_number** | **float** | | [optional] [default to 1.234]
31-
**prefix_ns_integer** | **int** | | [optional] [default to -2]
32-
**prefix_ns_boolean** | **bool** | | [optional] [default to True]
31+
**prefix_ns_integer** | **int** | | [optional]
32+
**prefix_ns_boolean** | **bool** | | [optional]
3333
**prefix_ns_array** | **list[int]** | | [optional]
3434
**prefix_ns_wrapped_array** | **list[int]** | | [optional]
3535

samples/client/petstore/python/petstore_api/models/pet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Pet(object):
4848
'status': 'status'
4949
}
5050

51-
def __init__(self, id=None, category=None, name='doggie', photo_urls=None, tags=None, status=None): # noqa: E501
51+
def __init__(self, id=None, category=None, name=None, photo_urls=None, tags=None, status=None): # noqa: E501
5252
"""Pet - a model defined in OpenAPI""" # noqa: E501
5353

5454
self._id = None

samples/client/petstore/python/petstore_api/models/type_holder_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class TypeHolderExample(object):
4646
'array_item': 'array_item'
4747
}
4848

49-
def __init__(self, string_item='what', number_item=1.234, integer_item=-2, bool_item=True, array_item=[0, 1, 2, 3]): # noqa: E501
49+
def __init__(self, string_item=None, number_item=1.234, integer_item=None, bool_item=None, array_item=None): # noqa: E501
5050
"""TypeHolderExample - a model defined in OpenAPI""" # noqa: E501
5151

5252
self._string_item = None

samples/client/petstore/python/petstore_api/models/xml_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class XmlItem(object):
9494
'prefix_ns_wrapped_array': 'prefix_ns_wrapped_array'
9595
}
9696

97-
def __init__(self, attribute_string='string', attribute_number=1.234, attribute_integer=-2, attribute_boolean=True, wrapped_array=None, name_string='string', name_number=1.234, name_integer=-2, name_boolean=True, name_array=None, name_wrapped_array=None, prefix_string='string', prefix_number=1.234, prefix_integer=-2, prefix_boolean=True, prefix_array=None, prefix_wrapped_array=None, namespace_string='string', namespace_number=1.234, namespace_integer=-2, namespace_boolean=True, namespace_array=None, namespace_wrapped_array=None, prefix_ns_string='string', prefix_ns_number=1.234, prefix_ns_integer=-2, prefix_ns_boolean=True, prefix_ns_array=None, prefix_ns_wrapped_array=None): # noqa: E501
97+
def __init__(self, attribute_string=None, attribute_number=1.234, attribute_integer=None, attribute_boolean=None, wrapped_array=None, name_string=None, name_number=1.234, name_integer=None, name_boolean=None, name_array=None, name_wrapped_array=None, prefix_string=None, prefix_number=1.234, prefix_integer=None, prefix_boolean=None, prefix_array=None, prefix_wrapped_array=None, namespace_string=None, namespace_number=1.234, namespace_integer=None, namespace_boolean=None, namespace_array=None, namespace_wrapped_array=None, prefix_ns_string=None, prefix_ns_number=1.234, prefix_ns_integer=None, prefix_ns_boolean=None, prefix_ns_array=None, prefix_ns_wrapped_array=None): # noqa: E501
9898
"""XmlItem - a model defined in OpenAPI""" # noqa: E501
9999

100100
self._attribute_string = None

0 commit comments

Comments
 (0)