DataFlowDebugCommandRequest.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;
/** Request body structure for data flow expression preview. */
@Fluent
public final class DataFlowDebugCommandRequest {
/*
* The ID of data flow debug session.
*/
@JsonProperty(value = "sessionId")
private String sessionId;
/*
* The command type.
*/
@JsonProperty(value = "command")
private DataFlowDebugCommandType command;
/*
* The command payload object.
*/
@JsonProperty(value = "commandPayload")
private DataFlowDebugCommandPayload commandPayload;
/**
* Get the sessionId property: The ID of data flow debug session.
*
* @return the sessionId value.
*/
public String getSessionId() {
return this.sessionId;
}
/**
* Set the sessionId property: The ID of data flow debug session.
*
* @param sessionId the sessionId value to set.
* @return the DataFlowDebugCommandRequest object itself.
*/
public DataFlowDebugCommandRequest setSessionId(String sessionId) {
this.sessionId = sessionId;
return this;
}
/**
* Get the command property: The command type.
*
* @return the command value.
*/
public DataFlowDebugCommandType getCommand() {
return this.command;
}
/**
* Set the command property: The command type.
*
* @param command the command value to set.
* @return the DataFlowDebugCommandRequest object itself.
*/
public DataFlowDebugCommandRequest setCommand(DataFlowDebugCommandType command) {
this.command = command;
return this;
}
/**
* Get the commandPayload property: The command payload object.
*
* @return the commandPayload value.
*/
public DataFlowDebugCommandPayload getCommandPayload() {
return this.commandPayload;
}
/**
* Set the commandPayload property: The command payload object.
*
* @param commandPayload the commandPayload value to set.
* @return the DataFlowDebugCommandRequest object itself.
*/
public DataFlowDebugCommandRequest setCommandPayload(DataFlowDebugCommandPayload commandPayload) {
this.commandPayload = commandPayload;
return this;
}
}