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

io.sphere.sdk.carts.ItemShippingTargetImpl Maven / Gradle / Ivy

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