Pagination.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.ai.textanalytics.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The Pagination model. */
@Fluent
public class Pagination {
/*
* The @nextLink property.
*/
@JsonProperty(value = "@nextLink")
private String nextLink;
/**
* 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 Pagination object itself.
*/
public Pagination setNextLink(String nextLink) {
this.nextLink = nextLink;
return this;
}
}