Interface ProductVariantPatchRequest

All Superinterfaces:
ImportRequest

public interface ProductVariantPatchRequest extends ImportRequest

The request body to import ProductVariantPatches. The data to be imported are represented by ProductVariantPatch.


Example to create an instance using the builder pattern

     ProductVariantPatchRequest productVariantPatchRequest = ProductVariantPatchRequest.builder()
             .plusPatches(patchesBuilder -> patchesBuilder)
             .build()
 
  • Field Details

    • PRODUCT_VARIANT_PATCH

      static final String PRODUCT_VARIANT_PATCH
      discriminator value for ProductVariantPatchRequest
      See Also:
  • Method Details