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