Class NumbersSearchResponse
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
Numbers
A paginated array of available numbers and their details
[JsonProperty("numbers")]
public IList<Number> Numbers { get; set; }