| Name |
Type |
Description |
Notes |
| phone_number |
str |
|
[optional] |
| phone_numbers |
List[str] |
منسوخ شده |
[optional] |
| user_id |
str |
|
[optional] |
from kenar_api_client.models.finder_user import FinderUser
# TODO update the JSON string below
json = "{}"
# create an instance of FinderUser from a JSON string
finder_user_instance = FinderUser.from_json(json)
# print the JSON string representation of the object
print(FinderUser.to_json())
# convert the object into a dict
finder_user_dict = finder_user_instance.to_dict()
# create an instance of FinderUser from a dict
finder_user_from_dict = FinderUser.from_dict(finder_user_dict)
[Back to Model list] [Back to API list] [Back to README]