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

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

There is a newer version: 1.0.0-M12
Show newest version
package io.sphere.sdk.products;

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

import java.util.Optional;

import java.util.List;

@JsonDeserialize(as = ProductVariantDraftImpl.class)
public interface ProductVariantDraft {
    Optional getSku();

    List getPrices();

    List getAttributes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy