The phone number lookup response data
| Name | Type | Description | Notes |
|---|---|---|---|
| request_id | str | The phone number lookup request ID from Bandwidth. | [optional] |
| status | InProgressLookupStatusEnum | [optional] | |
| results | List[LookupResult] | The carrier information results for the specified telephone number. | [optional] |
from bandwidth.models.get_async_bulk_lookup_response_data import GetAsyncBulkLookupResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of GetAsyncBulkLookupResponseData from a JSON string
get_async_bulk_lookup_response_data_instance = GetAsyncBulkLookupResponseData.from_json(json)
# print the JSON string representation of the object
print(GetAsyncBulkLookupResponseData.to_json())
# convert the object into a dict
get_async_bulk_lookup_response_data_dict = get_async_bulk_lookup_response_data_instance.to_dict()
# create an instance of GetAsyncBulkLookupResponseData from a dict
get_async_bulk_lookup_response_data_from_dict = GetAsyncBulkLookupResponseData.from_dict(get_async_bulk_lookup_response_data_dict)