docs/SyncNumberLookupResult.md in messente_api-1.4.0 vs docs/SyncNumberLookupResult.md in messente_api-2.1.0
- old
+ new
@@ -1,33 +1,34 @@
# MessenteApi::SyncNumberLookupResult
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**number** | **String** | Phone number in e.164 format |
-**roaming** | **Boolean** | Indicates if a number is roaming | [optional]
-**ported** | **Boolean** | Indicates if a number is ported | [optional]
-**roaming_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional]
-**current_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional]
-**original_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional]
-**ported_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional]
-**status** | **String** | Status of the phone number | [optional]
-**error** | [**AnyType**](.md) | Indicates if any error occurred while handling the request | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **number** | **String** | Phone number in e.164 format | |
+| **roaming** | **Boolean** | Indicates if a number is roaming | [optional] |
+| **ported** | **Boolean** | Indicates if a number is ported | [optional] |
+| **roaming_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional] |
+| **current_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional] |
+| **original_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional] |
+| **ported_network** | [**MobileNetwork**](MobileNetwork.md) | | [optional] |
+| **status** | **String** | Status of the phone number | [optional] |
+| **error** | **Object** | Indicates if any error occurred while handling the request | [optional] |
-## Code Sample
+## Example
```ruby
-require 'MessenteApi'
+require 'messente_api'
-instance = MessenteApi::SyncNumberLookupResult.new(number: null,
- roaming: null,
- ported: null,
- roaming_network: null,
- current_network: null,
- original_network: null,
- ported_network: null,
- status: null,
- error: null)
+instance = MessenteApi::SyncNumberLookupResult.new(
+ number: null,
+ roaming: null,
+ ported: null,
+ roaming_network: null,
+ current_network: null,
+ original_network: null,
+ ported_network: null,
+ status: null,
+ error: null
+)
```
-