Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 954 Bytes

File metadata and controls

31 lines (22 loc) · 954 Bytes

FinderUser

Properties

Name Type Description Notes
phone_number str [optional]
phone_numbers List[str] منسوخ شده [optional]
user_id str [optional]

Example

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]