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

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

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.orders;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sphere.sdk.annotations.ResourceValue;

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

@JsonDeserialize(as = ParcelMeasurementsImpl.class)
@ResourceValue
public interface ParcelMeasurements {
    Integer getHeightInMillimeter();

    Integer getLengthInMillimeter();

    Integer getWidthInMillimeter();

    Integer getWeightInGram();

    @Nullable
    List getItems();

    @Deprecated
    static ParcelMeasurements of(final Integer lengthInMillimeter, final Integer widthInMillimeter, final Integer heightInMillimeter, final Integer weightInGram) {
        return new ParcelMeasurementsImpl(heightInMillimeter, null, lengthInMillimeter, weightInGram,widthInMillimeter);
    }

    static ParcelMeasurements of(final Integer heightInMillimeter, @Nullable final List items, final Integer lengthInMillimeter, final Integer weightInGram, final Integer widthInMillimeter){
        return new ParcelMeasurementsImpl(heightInMillimeter, items, lengthInMillimeter, weightInGram,widthInMillimeter);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy