001
002package com.commercetools.api.models.cart;
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 * CartSetCustomerIdActionBuilder
013 * <hr>
014 * Example to create an instance using the builder pattern
015 * <div class=code-example>
016 * <pre><code class='java'>
017 *     CartSetCustomerIdAction cartSetCustomerIdAction = CartSetCustomerIdAction.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 CartSetCustomerIdActionBuilder implements Builder<CartSetCustomerIdAction> {
024
025    @Nullable
026    private String customerId;
027
028    /**
029     *  <p><code>id</code> of an existing Customer. If empty, any value is removed.</p>
030     * @param customerId value to be set
031     * @return Builder
032     */
033
034    public CartSetCustomerIdActionBuilder customerId(@Nullable final String customerId) {
035        this.customerId = customerId;
036        return this;
037    }
038
039    /**
040     *  <p><code>id</code> of an existing Customer. If empty, any value is removed.</p>
041     * @return customerId
042     */
043
044    @Nullable
045    public String getCustomerId() {
046        return this.customerId;
047    }
048
049    /**
050     * builds CartSetCustomerIdAction with checking for non-null required values
051     * @return CartSetCustomerIdAction
052     */
053    public CartSetCustomerIdAction build() {
054        return new CartSetCustomerIdActionImpl(customerId);
055    }
056
057    /**
058     * builds CartSetCustomerIdAction without checking for non-null required values
059     * @return CartSetCustomerIdAction
060     */
061    public CartSetCustomerIdAction buildUnchecked() {
062        return new CartSetCustomerIdActionImpl(customerId);
063    }
064
065    /**
066     * factory method for an instance of CartSetCustomerIdActionBuilder
067     * @return builder
068     */
069    public static CartSetCustomerIdActionBuilder of() {
070        return new CartSetCustomerIdActionBuilder();
071    }
072
073    /**
074     * create builder for CartSetCustomerIdAction instance
075     * @param template instance with prefilled values for the builder
076     * @return builder
077     */
078    public static CartSetCustomerIdActionBuilder of(final CartSetCustomerIdAction template) {
079        CartSetCustomerIdActionBuilder builder = new CartSetCustomerIdActionBuilder();
080        builder.customerId = template.getCustomerId();
081        return builder;
082    }
083
084}