Table of Contents

Class HALLinks

Namespace
Vonage.Common
Assembly
Vonage.dll

Represents the standard HAL (Hypertext Application Language) navigation links for paginated responses.

public class HALLinks
Inheritance
HALLinks
Inherited Members

HAL links provide a standardized way to navigate between pages of results.

Not all links will be present in every response - for example, Prev will be null on the first page.

Properties

Gets or sets the link to the first page of results.

[JsonProperty("first")]
public Link First { get; set; }

Property Value

Link

Gets or sets the link to the last page of results.

[JsonProperty("last")]
public Link Last { get; set; }

Property Value

Link

Gets or sets the link to the next page of results. Null if on the last page.

[JsonProperty("next")]
public Link Next { get; set; }

Property Value

Link

Gets or sets the link to the previous page of results. Null if on the first page.

[JsonProperty("prev")]
public Link Prev { get; set; }

Property Value

Link

Gets or sets the link to the current page.

[JsonProperty("self")]
public Link Self { get; set; }

Property Value

Link