AnalyzeJobMetadata.java

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

package com.azure.ai.textanalytics.implementation.models;

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

/** The AnalyzeJobMetadata model. */
@Fluent
public class AnalyzeJobMetadata extends JobMetadata {
    /*
     * The displayName property.
     */
    @JsonProperty(value = "displayName")
    private String displayName;

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

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