001
002package com.commercetools.api.models.subscription;
003
004import java.util.*;
005
006import javax.annotation.Nullable;
007
008import io.vrap.rmf.base.client.Builder;
009import io.vrap.rmf.base.client.utils.Generated;
010
011/**
012 * SubscriptionSetKeyActionBuilder
013 * <hr>
014 * Example to create an instance using the builder pattern
015 * <div class=code-example>
016 * <pre><code class='java'>
017 *     SubscriptionSetKeyAction subscriptionSetKeyAction = SubscriptionSetKeyAction.builder()
018 *             .build()
019 * </code></pre>
020 * </div>
021 */
022@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
023public class SubscriptionSetKeyActionBuilder implements Builder<SubscriptionSetKeyAction> {
024
025    @Nullable
026    private String key;
027
028    /**
029     *  <p>Value to set. If empty, any existing value will be removed.</p>
030     * @param key value to be set
031     * @return Builder
032     */
033
034    public SubscriptionSetKeyActionBuilder key(@Nullable final String key) {
035        this.key = key;
036        return this;
037    }
038
039    /**
040     *  <p>Value to set. If empty, any existing value will be removed.</p>
041     * @return key
042     */
043
044    @Nullable
045    public String getKey() {
046        return this.key;
047    }
048
049    /**
050     * builds SubscriptionSetKeyAction with checking for non-null required values
051     * @return SubscriptionSetKeyAction
052     */
053    public SubscriptionSetKeyAction build() {
054        return new SubscriptionSetKeyActionImpl(key);
055    }
056
057    /**
058     * builds SubscriptionSetKeyAction without checking for non-null required values
059     * @return SubscriptionSetKeyAction
060     */
061    public SubscriptionSetKeyAction buildUnchecked() {
062        return new SubscriptionSetKeyActionImpl(key);
063    }
064
065    /**
066     * factory method for an instance of SubscriptionSetKeyActionBuilder
067     * @return builder
068     */
069    public static SubscriptionSetKeyActionBuilder of() {
070        return new SubscriptionSetKeyActionBuilder();
071    }
072
073    /**
074     * create builder for SubscriptionSetKeyAction instance
075     * @param template instance with prefilled values for the builder
076     * @return builder
077     */
078    public static SubscriptionSetKeyActionBuilder of(final SubscriptionSetKeyAction template) {
079        SubscriptionSetKeyActionBuilder builder = new SubscriptionSetKeyActionBuilder();
080        builder.key = template.getKey();
081        return builder;
082    }
083
084}