KqlScriptContentMetadata.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;

/** The KqlScriptContentMetadata model. */
@Fluent
public final class KqlScriptContentMetadata {
    /*
     * The language property.
     */
    @JsonProperty(value = "language")
    private String language;

    /**
     * Get the language property: The language property.
     *
     * @return the language value.
     */
    public String getLanguage() {
        return this.language;
    }

    /**
     * Set the language property: The language property.
     *
     * @param language the language value to set.
     * @return the KqlScriptContentMetadata object itself.
     */
    public KqlScriptContentMetadata setLanguage(String language) {
        this.language = language;
        return this;
    }
}