001
002package com.commercetools.api.models.product_selection;
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.common.LocalizedString;
013import com.fasterxml.jackson.annotation.*;
014import com.fasterxml.jackson.databind.annotation.*;
015
016import io.vrap.rmf.base.client.utils.Generated;
017
018/**
019 * ProductSelectionChangeNameAction
020 *
021 * <hr>
022 * Example to create an instance using the builder pattern
023 * <div class=code-example>
024 * <pre><code class='java'>
025 *     ProductSelectionChangeNameAction productSelectionChangeNameAction = ProductSelectionChangeNameAction.builder()
026 *             .name(nameBuilder -> nameBuilder)
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 = ProductSelectionChangeNameActionImpl.class)
033public interface ProductSelectionChangeNameAction extends ProductSelectionUpdateAction {
034
035    /**
036     * discriminator value for ProductSelectionChangeNameAction
037     */
038    String CHANGE_NAME = "changeName";
039
040    /**
041     *  <p>The new name to be set for the ProductSelection.</p>
042     * @return name
043     */
044    @NotNull
045    @Valid
046    @JsonProperty("name")
047    public LocalizedString getName();
048
049    /**
050     *  <p>The new name to be set for the ProductSelection.</p>
051     * @param name value to be set
052     */
053
054    public void setName(final LocalizedString name);
055
056    /**
057     * factory method
058     * @return instance of ProductSelectionChangeNameAction
059     */
060    public static ProductSelectionChangeNameAction of() {
061        return new ProductSelectionChangeNameActionImpl();
062    }
063
064    /**
065     * factory method to create a shallow copy ProductSelectionChangeNameAction
066     * @param template instance to be copied
067     * @return copy instance
068     */
069    public static ProductSelectionChangeNameAction of(final ProductSelectionChangeNameAction template) {
070        ProductSelectionChangeNameActionImpl instance = new ProductSelectionChangeNameActionImpl();
071        instance.setName(template.getName());
072        return instance;
073    }
074
075    /**
076     * factory method to create a deep copy of ProductSelectionChangeNameAction
077     * @param template instance to be copied
078     * @return copy instance
079     */
080    @Nullable
081    public static ProductSelectionChangeNameAction deepCopy(@Nullable final ProductSelectionChangeNameAction template) {
082        if (template == null) {
083            return null;
084        }
085        ProductSelectionChangeNameActionImpl instance = new ProductSelectionChangeNameActionImpl();
086        instance.setName(com.commercetools.api.models.common.LocalizedString.deepCopy(template.getName()));
087        return instance;
088    }
089
090    /**
091     * builder factory method for ProductSelectionChangeNameAction
092     * @return builder
093     */
094    public static ProductSelectionChangeNameActionBuilder builder() {
095        return ProductSelectionChangeNameActionBuilder.of();
096    }
097
098    /**
099     * create builder for ProductSelectionChangeNameAction instance
100     * @param template instance with prefilled values for the builder
101     * @return builder
102     */
103    public static ProductSelectionChangeNameActionBuilder builder(final ProductSelectionChangeNameAction template) {
104        return ProductSelectionChangeNameActionBuilder.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 withProductSelectionChangeNameAction(Function<ProductSelectionChangeNameAction, 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<ProductSelectionChangeNameAction> typeReference() {
122        return new com.fasterxml.jackson.core.type.TypeReference<ProductSelectionChangeNameAction>() {
123            @Override
124            public String toString() {
125                return "TypeReference<ProductSelectionChangeNameAction>";
126            }
127        };
128    }
129}