All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.products.ProductVariantDraft Maven / Gradle / Ivy

package io.sphere.sdk.products;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sphere.sdk.products.attributes.AttributeDraft;

import javax.annotation.Nullable;
import java.util.List;

/**
 * @see ProductVariantDraftBuilder
 */
@JsonDeserialize(as = ProductVariantDraftImpl.class)
public interface ProductVariantDraft {
    @Nullable
    String getSku();

    List getPrices();

    List getAttributes();

    List getImages();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy