AdditionalColumns.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.analytics.synapse.artifacts.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Specify the column name and value of additional columns. */
@Fluent
public final class AdditionalColumns {
    /*
     * Additional column name. Type: string (or Expression with resultType
     * string).
     */
    @JsonProperty(value = "name")
    private Object name;

    /*
     * Additional column value. Type: string (or Expression with resultType
     * string).
     */
    @JsonProperty(value = "value")
    private Object value;

    /**
     * Get the name property: Additional column name. Type: string (or Expression with resultType string).
     *
     * @return the name value.
     */
    public Object getName() {
        return this.name;
    }

    /**
     * Set the name property: Additional column name. Type: string (or Expression with resultType string).
     *
     * @param name the name value to set.
     * @return the AdditionalColumns object itself.
     */
    public AdditionalColumns setName(Object name) {
        this.name = name;
        return this;
    }

    /**
     * Get the value property: Additional column value. Type: string (or Expression with resultType string).
     *
     * @return the value value.
     */
    public Object getValue() {
        return this.value;
    }

    /**
     * Set the value property: Additional column value. Type: string (or Expression with resultType string).
     *
     * @param value the value value to set.
     * @return the AdditionalColumns object itself.
     */
    public AdditionalColumns setValue(Object value) {
        this.value = value;
        return this;
    }
}