A container for number lookup response
| Name | Type | Description | Notes |
|---|---|---|---|
| request_id | str | ID of the request | |
| result | List[SyncNumberLookupResult] | A container for phone number info objects |
from messente_api.models.sync_number_lookup_success import SyncNumberLookupSuccess
# TODO update the JSON string below
json = "{}"
# create an instance of SyncNumberLookupSuccess from a JSON string
sync_number_lookup_success_instance = SyncNumberLookupSuccess.from_json(json)
# print the JSON string representation of the object
print(SyncNumberLookupSuccess.to_json())
# convert the object into a dict
sync_number_lookup_success_dict = sync_number_lookup_success_instance.to_dict()
# create an instance of SyncNumberLookupSuccess from a dict
sync_number_lookup_success_from_dict = SyncNumberLookupSuccess.from_dict(sync_number_lookup_success_dict)