Table of Contents

Class ApplicationPage

Namespace
Vonage.Applications
Assembly
Vonage.dll

Represents a paginated response containing a list of applications.

public class ApplicationPage
Inheritance
ApplicationPage
Inherited Members

Properties

Embedded

The embedded list of applications matching the request filters.

[JsonProperty("_embedded")]
public ApplicationList Embedded { get; set; }

Property Value

ApplicationList

Page

The current page number (starts at 1).

[JsonProperty("page")]
public int? Page { get; set; }

Property Value

int?

PageSize

The number of applications returned per page.

[JsonProperty("page_size")]
public int? PageSize { get; set; }

Property Value

int?

TotalItems

The total number of applications.

[JsonProperty("total_items")]
public int? TotalItems { get; set; }

Property Value

int?

TotalPages

The total number of pages available.

[JsonProperty("total_pages")]
public int? TotalPages { get; set; }

Property Value

int?