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

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

The newest version!
package io.sphere.sdk.orders;

import io.sphere.sdk.attributes.Attribute;
import io.sphere.sdk.models.Image;
import io.sphere.sdk.products.Price;

import java.util.List;
import java.util.Optional;

/**
 *
 * @see ProductVariantImportDraftBuilder
 */
public interface ProductVariantImportDraft {
    Optional> getAttributes();

    Optional getId();

    Optional> getImages();

    Optional> getPrices();

    Optional getSku();

    /**
     * Field is not part of the SPHERE.IO API, it is used to initialize {@link LineItemImportDraftBuilder} correctly.
     * @return the product ID
     */
    Optional getProductId();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy