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

io.sphere.sdk.shippingmethods.ZoneRateImpl Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.zones.Zone;
import java.util.List;
import javax.annotation.Generated;

@Generated(
    value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
    comments = "Generated from: io.sphere.sdk.shippingmethods.ZoneRate"
)
final class ZoneRateImpl extends Base implements ZoneRate {
  private List shippingRates;

  private Reference zone;

  @JsonCreator
  ZoneRateImpl(final List shippingRates, final Reference zone) {
    this.shippingRates = shippingRates;
    this.zone = zone;
  }

  public List getShippingRates() {
    return shippingRates;
  }

  public Reference getZone() {
    return zone;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy