DataFlowDebugSessionsCreateDataFlowDebugSessionHeaders.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 DataFlowDebugSessionsCreateDataFlowDebugSessionHeaders model. */
@Fluent
public final class DataFlowDebugSessionsCreateDataFlowDebugSessionHeaders {
/*
* The location property.
*/
@JsonProperty(value = "location")
private String location;
/**
* Get the location property: The location property.
*
* @return the location value.
*/
public String getLocation() {
return this.location;
}
/**
* Set the location property: The location property.
*
* @param location the location value to set.
* @return the DataFlowDebugSessionsCreateDataFlowDebugSessionHeaders object itself.
*/
public DataFlowDebugSessionsCreateDataFlowDebugSessionHeaders setLocation(String location) {
this.location = location;
return this;
}
}