KqlScriptsResourceCollectionResponse.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;
import java.util.List;
/** The KqlScriptsResourceCollectionResponse model. */
@Fluent
public final class KqlScriptsResourceCollectionResponse {
/*
* The value property.
*/
@JsonProperty(value = "value")
private List<KqlScriptResource> value;
/*
* The nextLink property.
*/
@JsonProperty(value = "nextLink")
private String nextLink;
/**
* Get the value property: The value property.
*
* @return the value value.
*/
public List<KqlScriptResource> getValue() {
return this.value;
}
/**
* Set the value property: The value property.
*
* @param value the value value to set.
* @return the KqlScriptsResourceCollectionResponse object itself.
*/
public KqlScriptsResourceCollectionResponse setValue(List<KqlScriptResource> value) {
this.value = value;
return this;
}
/**
* Get the nextLink property: The nextLink property.
*
* @return the nextLink value.
*/
public String getNextLink() {
return this.nextLink;
}
/**
* Set the nextLink property: The nextLink property.
*
* @param nextLink the nextLink value to set.
* @return the KqlScriptsResourceCollectionResponse object itself.
*/
public KqlScriptsResourceCollectionResponse setNextLink(String nextLink) {
this.nextLink = nextLink;
return this;
}
}