@@ -2840,11 +2840,7 @@ class ProductDeletedMessagePayloadSchema(MessagePayloadSchema):
28402840 """Marshmallow schema for :class:`commercetools.types.ProductDeletedMessagePayload`."""
28412841
28422842 removed_image_urls = marshmallow .fields .List (
2843- helpers .LazyNestedField (
2844- nested = "commercetools._schemas.None.stringSchema" ,
2845- unknown = marshmallow .EXCLUDE ,
2846- allow_none = True ,
2847- ),
2843+ marshmallow .fields .String (allow_none = True ),
28482844 allow_none = True ,
28492845 data_key = "removedImageUrls" ,
28502846 )
@@ -2868,11 +2864,7 @@ class ProductDeletedMessageSchema(MessageSchema):
28682864 """Marshmallow schema for :class:`commercetools.types.ProductDeletedMessage`."""
28692865
28702866 removed_image_urls = marshmallow .fields .List (
2871- helpers .LazyNestedField (
2872- nested = "commercetools._schemas.None.stringSchema" ,
2873- unknown = marshmallow .EXCLUDE ,
2874- allow_none = True ,
2875- ),
2867+ marshmallow .fields .String (allow_none = True ),
28762868 allow_none = True ,
28772869 data_key = "removedImageUrls" ,
28782870 )
@@ -3028,11 +3020,7 @@ class ProductPublishedMessagePayloadSchema(MessagePayloadSchema):
30283020 """Marshmallow schema for :class:`commercetools.types.ProductPublishedMessagePayload`."""
30293021
30303022 removed_image_urls = marshmallow .fields .List (
3031- helpers .LazyNestedField (
3032- nested = "commercetools._schemas.None.anySchema" ,
3033- unknown = marshmallow .EXCLUDE ,
3034- allow_none = True ,
3035- ),
3023+ marshmallow .fields .Raw (allow_none = True ),
30363024 allow_none = True ,
30373025 data_key = "removedImageUrls" ,
30383026 )
@@ -3057,11 +3045,7 @@ class ProductPublishedMessageSchema(MessageSchema):
30573045 """Marshmallow schema for :class:`commercetools.types.ProductPublishedMessage`."""
30583046
30593047 removed_image_urls = marshmallow .fields .List (
3060- helpers .LazyNestedField (
3061- nested = "commercetools._schemas.None.anySchema" ,
3062- unknown = marshmallow .EXCLUDE ,
3063- allow_none = True ,
3064- ),
3048+ marshmallow .fields .Raw (allow_none = True ),
30653049 allow_none = True ,
30663050 data_key = "removedImageUrls" ,
30673051 )
@@ -3124,11 +3108,7 @@ class ProductRevertedStagedChangesMessagePayloadSchema(MessagePayloadSchema):
31243108 """Marshmallow schema for :class:`commercetools.types.ProductRevertedStagedChangesMessagePayload`."""
31253109
31263110 removed_image_urls = marshmallow .fields .List (
3127- helpers .LazyNestedField (
3128- nested = "commercetools._schemas.None.stringSchema" ,
3129- unknown = marshmallow .EXCLUDE ,
3130- allow_none = True ,
3131- ),
3111+ marshmallow .fields .String (allow_none = True ),
31323112 allow_none = True ,
31333113 data_key = "removedImageUrls" ,
31343114 )
@@ -3146,11 +3126,7 @@ class ProductRevertedStagedChangesMessageSchema(MessageSchema):
31463126 """Marshmallow schema for :class:`commercetools.types.ProductRevertedStagedChangesMessage`."""
31473127
31483128 removed_image_urls = marshmallow .fields .List (
3149- helpers .LazyNestedField (
3150- nested = "commercetools._schemas.None.stringSchema" ,
3151- unknown = marshmallow .EXCLUDE ,
3152- allow_none = True ,
3153- ),
3129+ marshmallow .fields .String (allow_none = True ),
31543130 allow_none = True ,
31553131 data_key = "removedImageUrls" ,
31563132 )
@@ -3263,11 +3239,7 @@ class ProductVariantDeletedMessagePayloadSchema(MessagePayloadSchema):
32633239 allow_none = True ,
32643240 )
32653241 removed_image_urls = marshmallow .fields .List (
3266- helpers .LazyNestedField (
3267- nested = "commercetools._schemas.None.stringSchema" ,
3268- unknown = marshmallow .EXCLUDE ,
3269- allow_none = True ,
3270- ),
3242+ marshmallow .fields .String (allow_none = True ),
32713243 allow_none = True ,
32723244 data_key = "removedImageUrls" ,
32733245 )
@@ -3290,11 +3262,7 @@ class ProductVariantDeletedMessageSchema(MessageSchema):
32903262 allow_none = True ,
32913263 )
32923264 removed_image_urls = marshmallow .fields .List (
3293- helpers .LazyNestedField (
3294- nested = "commercetools._schemas.None.stringSchema" ,
3295- unknown = marshmallow .EXCLUDE ,
3296- allow_none = True ,
3297- ),
3265+ marshmallow .fields .String (allow_none = True ),
32983266 allow_none = True ,
32993267 data_key = "removedImageUrls" ,
33003268 )
0 commit comments