001
002package com.commercetools.api.models.shipping_method;
003
004import java.time.*;
005import java.util.*;
006import java.util.function.Function;
007
008import javax.annotation.Nullable;
009import javax.validation.Valid;
010import javax.validation.constraints.NotNull;
011
012import com.commercetools.api.models.zone.ZoneResourceIdentifier;
013import com.fasterxml.jackson.annotation.*;
014import com.fasterxml.jackson.databind.annotation.*;
015
016import io.vrap.rmf.base.client.utils.Generated;
017
018/**
019 * ShippingMethodAddZoneAction
020 *
021 * <hr>
022 * Example to create an instance using the builder pattern
023 * <div class=code-example>
024 * <pre><code class='java'>
025 *     ShippingMethodAddZoneAction shippingMethodAddZoneAction = ShippingMethodAddZoneAction.builder()
026 *             .zone(zoneBuilder -> zoneBuilder)
027 *             .build()
028 * </code></pre>
029 * </div>
030 */
031@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
032@JsonDeserialize(as = ShippingMethodAddZoneActionImpl.class)
033public interface ShippingMethodAddZoneAction extends ShippingMethodUpdateAction {
034
035    /**
036     * discriminator value for ShippingMethodAddZoneAction
037     */
038    String ADD_ZONE = "addZone";
039
040    /**
041     *  <p>Value to add to <code>zoneRates</code>.</p>
042     * @return zone
043     */
044    @NotNull
045    @Valid
046    @JsonProperty("zone")
047    public ZoneResourceIdentifier getZone();
048
049    /**
050     *  <p>Value to add to <code>zoneRates</code>.</p>
051     * @param zone value to be set
052     */
053
054    public void setZone(final ZoneResourceIdentifier zone);
055
056    /**
057     * factory method
058     * @return instance of ShippingMethodAddZoneAction
059     */
060    public static ShippingMethodAddZoneAction of() {
061        return new ShippingMethodAddZoneActionImpl();
062    }
063
064    /**
065     * factory method to create a shallow copy ShippingMethodAddZoneAction
066     * @param template instance to be copied
067     * @return copy instance
068     */
069    public static ShippingMethodAddZoneAction of(final ShippingMethodAddZoneAction template) {
070        ShippingMethodAddZoneActionImpl instance = new ShippingMethodAddZoneActionImpl();
071        instance.setZone(template.getZone());
072        return instance;
073    }
074
075    /**
076     * factory method to create a deep copy of ShippingMethodAddZoneAction
077     * @param template instance to be copied
078     * @return copy instance
079     */
080    @Nullable
081    public static ShippingMethodAddZoneAction deepCopy(@Nullable final ShippingMethodAddZoneAction template) {
082        if (template == null) {
083            return null;
084        }
085        ShippingMethodAddZoneActionImpl instance = new ShippingMethodAddZoneActionImpl();
086        instance.setZone(com.commercetools.api.models.zone.ZoneResourceIdentifier.deepCopy(template.getZone()));
087        return instance;
088    }
089
090    /**
091     * builder factory method for ShippingMethodAddZoneAction
092     * @return builder
093     */
094    public static ShippingMethodAddZoneActionBuilder builder() {
095        return ShippingMethodAddZoneActionBuilder.of();
096    }
097
098    /**
099     * create builder for ShippingMethodAddZoneAction instance
100     * @param template instance with prefilled values for the builder
101     * @return builder
102     */
103    public static ShippingMethodAddZoneActionBuilder builder(final ShippingMethodAddZoneAction template) {
104        return ShippingMethodAddZoneActionBuilder.of(template);
105    }
106
107    /**
108     * accessor map function
109     * @param <T> mapped type
110     * @param helper function to map the object
111     * @return mapped value
112     */
113    default <T> T withShippingMethodAddZoneAction(Function<ShippingMethodAddZoneAction, T> helper) {
114        return helper.apply(this);
115    }
116
117    /**
118     * gives a TypeReference for usage with Jackson DataBind
119     * @return TypeReference
120     */
121    public static com.fasterxml.jackson.core.type.TypeReference<ShippingMethodAddZoneAction> typeReference() {
122        return new com.fasterxml.jackson.core.type.TypeReference<ShippingMethodAddZoneAction>() {
123            @Override
124            public String toString() {
125                return "TypeReference<ShippingMethodAddZoneAction>";
126            }
127        };
128    }
129}