| Name |
Type |
Description |
Notes |
| username |
str |
|
|
| changed_at |
float |
|
|
from unifapi.models.instagram_former_username import InstagramFormerUsername
# TODO update the JSON string below
json = "{}"
# create an instance of InstagramFormerUsername from a JSON string
instagram_former_username_instance = InstagramFormerUsername.from_json(json)
# print the JSON string representation of the object
print(InstagramFormerUsername.to_json())
# convert the object into a dict
instagram_former_username_dict = instagram_former_username_instance.to_dict()
# create an instance of InstagramFormerUsername from a dict
instagram_former_username_from_dict = InstagramFormerUsername.from_dict(instagram_former_username_dict)
[Back to Model list] [Back to API list] [Back to README]