Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

InstagramFormerUsername

Properties

Name Type Description Notes
username str
changed_at float

Example

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]