io.sphere.sdk.orders.ProductVariantImportDraft Maven / Gradle / Ivy
package io.sphere.sdk.orders;
import io.sphere.sdk.products.attributes.AttributeImportDraft;
import io.sphere.sdk.products.Image;
import io.sphere.sdk.products.Price;
import javax.annotation.Nullable;
import java.util.List;
/**
*
* @see ProductVariantImportDraftBuilder
*/
public interface ProductVariantImportDraft {
@Nullable
List getAttributes();
@Nullable
Integer getId();
@Nullable
List getImages();
@Nullable
List getPrices();
@Nullable
String getSku();
/**
* Field is not part of the SPHERE.IO API, it is used to initialize {@link LineItemImportDraftBuilder} correctly.
* @return the product ID
*/
@Nullable
String getProductId();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy