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

io.sphere.sdk.carts.ItemShippingDetailsImpl 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 com.fasterxml.jackson.annotation.JsonProperty;
import io.sphere.sdk.models.Base;
import java.util.List;
import javax.annotation.Generated;

@Generated(
    value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
    comments = "Generated from: io.sphere.sdk.carts.ItemShippingDetails"
)
final class ItemShippingDetailsImpl extends Base implements ItemShippingDetails {
  private List targets;

  @JsonProperty("valid")
  private boolean valid;

  @JsonCreator
  ItemShippingDetailsImpl(final List targets,
      @JsonProperty("valid") final boolean valid) {
    this.targets = targets;
    this.valid = valid;
  }

  public List getTargets() {
    return targets;
  }

  @JsonProperty("valid")
  public boolean isValid() {
    return valid;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy