UserLegacyExtendedProfileBirthdate

November 23, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
dayint
monthint
visibilitystr
yearint[optional]
year_visibilitystr

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]