ExposureControlResponse.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.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The exposure control response. */
@Immutable
public final class ExposureControlResponse {
    /*
     * The feature name.
     */
    @JsonProperty(value = "featureName", access = JsonProperty.Access.WRITE_ONLY)
    private String featureName;

    /*
     * The feature value.
     */
    @JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
    private String value;

    /**
     * Get the featureName property: The feature name.
     *
     * @return the featureName value.
     */
    public String getFeatureName() {
        return this.featureName;
    }

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