SqlScriptFolder.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 folder that this SQL script is in. If not specified, this SQL script will appear at the root level. */
@Fluent
public final class SqlScriptFolder {
/*
* The name of the folder that this SQL script is in.
*/
@JsonProperty(value = "name")
private String name;
/**
* Get the name property: The name of the folder that this SQL script is in.
*
* @return the name value.
*/
public String getName() {
return this.name;
}
/**
* Set the name property: The name of the folder that this SQL script is in.
*
* @param name the name value to set.
* @return the SqlScriptFolder object itself.
*/
public SqlScriptFolder setName(String name) {
this.name = name;
return this;
}
}