/* Options:
Date: 2025-05-04 22:44:43
Version: 8.71
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://team.evovoice.io
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: SearchPhoneNumbers.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Endpoints;
namespace Voice.Api.Endpoints
{
///
///Search for phone numbers
///
[Route("/endpoints/phone-numbers/search", "GET")]
[Api(Description="Search for phone numbers")]
public partial class SearchPhoneNumbers
: IReturn>, IGet
{
///
///The account you are searching for
///
[ApiMember(Description="The account you are searching for")]
public virtual string AccountId { get; set; }
///
///The area code
///
[ApiMember(Description="The area code")]
public virtual string AreaCode { get; set; }
///
///The country code you are searching for
///
[ApiMember(Description="The country code you are searching for")]
public virtual string CountryCode { get; set; }
///
///The postal code you are searching for
///
[ApiMember(Description="The postal code you are searching for")]
public virtual string PostalCode { get; set; }
///
///The distance from the specified postal code (default is 100)
///
[ApiMember(Description="The distance from the specified postal code (default is 100)")]
public virtual int? Distance { get; set; }
///
///Search for fax numbers
///
[ApiMember(Description="Search for fax numbers")]
public virtual bool IsFaxNumber { get; set; }
///
///Contains specific digits
///
[ApiMember(Description="Contains specific digits")]
public virtual string Contains { get; set; }
}
}