File tree Expand file tree Collapse file tree 4 files changed +22
-0
lines changed
scaleway-async/scaleway_async/product_catalog/v2alpha1
scaleway/scaleway/product_catalog/v2alpha1 Expand file tree Collapse file tree 4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -645,6 +645,12 @@ def unmarshal_PublicCatalogProduct(data: Any) -> PublicCatalogProduct:
645
645
else :
646
646
args ["service_category" ] = None
647
647
648
+ field = data .get ("product_category" , None )
649
+ if field is not None :
650
+ args ["product_category" ] = field
651
+ else :
652
+ args ["product_category" ] = None
653
+
648
654
field = data .get ("product" , None )
649
655
if field is not None :
650
656
args ["product" ] = field
Original file line number Diff line number Diff line change @@ -387,6 +387,11 @@ class PublicCatalogProduct:
387
387
The category of the product.
388
388
"""
389
389
390
+ product_category : str
391
+ """
392
+ The product category of the product.
393
+ """
394
+
390
395
product : str
391
396
"""
392
397
The product name.
Original file line number Diff line number Diff line change @@ -645,6 +645,12 @@ def unmarshal_PublicCatalogProduct(data: Any) -> PublicCatalogProduct:
645
645
else :
646
646
args ["service_category" ] = None
647
647
648
+ field = data .get ("product_category" , None )
649
+ if field is not None :
650
+ args ["product_category" ] = field
651
+ else :
652
+ args ["product_category" ] = None
653
+
648
654
field = data .get ("product" , None )
649
655
if field is not None :
650
656
args ["product" ] = field
Original file line number Diff line number Diff line change @@ -387,6 +387,11 @@ class PublicCatalogProduct:
387
387
The category of the product.
388
388
"""
389
389
390
+ product_category : str
391
+ """
392
+ The product category of the product.
393
+ """
394
+
390
395
product : str
391
396
"""
392
397
The product name.
You can’t perform that action at this time.
0 commit comments