NotebookFolder.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 notebook is in. If not specified, this notebook will appear at the root level. */
@Fluent
public final class NotebookFolder {
    /*
     * The name of the folder that this notebook is in.
     */
    @JsonProperty(value = "name")
    private String name;

    /**
     * Get the name property: The name of the folder that this notebook is in.
     *
     * @return the name value.
     */
    public String getName() {
        return this.name;
    }

    /**
     * Set the name property: The name of the folder that this notebook is in.
     *
     * @param name the name value to set.
     * @return the NotebookFolder object itself.
     */
    public NotebookFolder setName(String name) {
        this.name = name;
        return this;
    }
}