AddDataFlowToDebugSessionResponse.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;

/** Response body structure for starting data flow debug session. */
@Fluent
public final class AddDataFlowToDebugSessionResponse {
    /*
     * The ID of data flow debug job version.
     */
    @JsonProperty(value = "jobVersion")
    private String jobVersion;

    /**
     * Get the jobVersion property: The ID of data flow debug job version.
     *
     * @return the jobVersion value.
     */
    public String getJobVersion() {
        return this.jobVersion;
    }

    /**
     * Set the jobVersion property: The ID of data flow debug job version.
     *
     * @param jobVersion the jobVersion value to set.
     * @return the AddDataFlowToDebugSessionResponse object itself.
     */
    public AddDataFlowToDebugSessionResponse setJobVersion(String jobVersion) {
        this.jobVersion = jobVersion;
        return this;
    }
}