ICollectionResponse<T> Interface

Type Parameters

T

the type for the items in the response.

Implements

public interface ICollectionResponse<T>
extends IJsonBackedObject

Represents a response of a collection of items returned by the service

Method Summary

Modifier and Type Method and Description
abstract java.lang.String nextLink()

Gets the link to the next page of this collection

abstract java.util.List<T> values()

Gets the deserialized values the response contains

Method Details

nextLink

public abstract String nextLink()

Gets the link to the next page of this collection

Returns:

The URL to the next page of this collection, or null

values

public abstract List values()

Gets the deserialized values the response contains

Returns:

the deserialized values for the response

Applies to