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

io.sphere.sdk.orders.ProductVariantImportDraft Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
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