Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

UserLegacyExtendedProfileBirthdate

Properties

Name Type Description Notes
day int
month int
visibility str
year int [optional]
year_visibility str

Example

from twitter_openapi_python_generated.models.user_legacy_extended_profile_birthdate import UserLegacyExtendedProfileBirthdate

# TODO update the JSON string below
json = "{}"
# create an instance of UserLegacyExtendedProfileBirthdate from a JSON string
user_legacy_extended_profile_birthdate_instance = UserLegacyExtendedProfileBirthdate.from_json(json)
# print the JSON string representation of the object
print(UserLegacyExtendedProfileBirthdate.to_json())

# convert the object into a dict
user_legacy_extended_profile_birthdate_dict = user_legacy_extended_profile_birthdate_instance.to_dict()
# create an instance of UserLegacyExtendedProfileBirthdate from a dict
user_legacy_extended_profile_birthdate_from_dict = UserLegacyExtendedProfileBirthdate.from_dict(user_legacy_extended_profile_birthdate_dict)

[Back to Model list] [Back to API list] [Back to README]