io.sphere.sdk.carts.ItemShippingTargetImpl Maven / Gradle / Ivy
package io.sphere.sdk.carts;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.lang.Long;
import java.lang.String;
import javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.carts.ItemShippingTarget"
)
final class ItemShippingTargetImpl extends Base implements ItemShippingTarget {
private String addressKey;
private Long quantity;
@JsonCreator
ItemShippingTargetImpl(final String addressKey, final Long quantity) {
this.addressKey = addressKey;
this.quantity = quantity;
}
public String getAddressKey() {
return addressKey;
}
public Long getQuantity() {
return quantity;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy