Table of Contents

Class NumbersSearchResponse

Namespace
Vonage.Numbers
Assembly
Vonage.dll

Represents the response from a number search operation, containing a paginated list of numbers.

public class NumbersSearchResponse
Inheritance
NumbersSearchResponse
Inherited Members

Properties

Count

The total amount of numbers available in the pool.

[JsonProperty("count")]
public int Count { get; set; }

Property Value

int

Numbers

A paginated array of available numbers and their details

[JsonProperty("numbers")]
public IList<Number> Numbers { get; set; }

Property Value

IList<Number>