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