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

com.commercetools.history.models.common.ShippingRatePriceTier Maven / Gradle / Ivy

There is a newer version: 17.11.0
Show newest version

package com.commercetools.history.models.common;

import java.time.*;
import java.util.*;
import java.util.function.Function;

import javax.annotation.Nullable;
import javax.validation.constraints.NotNull;

import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;

import io.vrap.rmf.base.client.utils.Generated;

/**
 * ShippingRatePriceTier
 *
 * 
* Example to create an instance using the builder pattern *
*

 *     ShippingRatePriceTier shippingRatePriceTier = ShippingRatePriceTier.builder()
 *             .type(ShippingRateTierType.CART_VALUE)
 *             .build()
 * 
*
*/ @Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen") @JsonDeserialize(as = ShippingRatePriceTierImpl.class) public interface ShippingRatePriceTier { /** * * @return type */ @NotNull @JsonProperty("type") public ShippingRateTierType getType(); /** * set type * @param type value to be set */ public void setType(final ShippingRateTierType type); /** * factory method * @return instance of ShippingRatePriceTier */ public static ShippingRatePriceTier of() { return new ShippingRatePriceTierImpl(); } /** * factory method to create a shallow copy ShippingRatePriceTier * @param template instance to be copied * @return copy instance */ public static ShippingRatePriceTier of(final ShippingRatePriceTier template) { ShippingRatePriceTierImpl instance = new ShippingRatePriceTierImpl(); instance.setType(template.getType()); return instance; } /** * factory method to create a deep copy of ShippingRatePriceTier * @param template instance to be copied * @return copy instance */ @Nullable public static ShippingRatePriceTier deepCopy(@Nullable final ShippingRatePriceTier template) { if (template == null) { return null; } ShippingRatePriceTierImpl instance = new ShippingRatePriceTierImpl(); instance.setType(template.getType()); return instance; } /** * builder factory method for ShippingRatePriceTier * @return builder */ public static ShippingRatePriceTierBuilder builder() { return ShippingRatePriceTierBuilder.of(); } /** * create builder for ShippingRatePriceTier instance * @param template instance with prefilled values for the builder * @return builder */ public static ShippingRatePriceTierBuilder builder(final ShippingRatePriceTier template) { return ShippingRatePriceTierBuilder.of(template); } /** * accessor map function * @param mapped type * @param helper function to map the object * @return mapped value */ default T withShippingRatePriceTier(Function helper) { return helper.apply(this); } /** * gives a TypeReference for usage with Jackson DataBind * @return TypeReference */ public static com.fasterxml.jackson.core.type.TypeReference typeReference() { return new com.fasterxml.jackson.core.type.TypeReference() { @Override public String toString() { return "TypeReference"; } }; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy