public async Task <NumberLookupRecord> GetAsync(string number, NumberLookupRecordOptions options, RequestOptions requestOptions = null, CancellationToken cancellationToken = default)
 {
     return(await this.GetEntityAsync(number, options, requestOptions, cancellationToken));
 }
 public NumberLookupRecord Get(string number, NumberLookupRecordOptions options, RequestOptions requestOptions = null)
 {
     return(this.GetEntity(number, options, requestOptions));
 }