UserLegacyExtendedProfileBirthdate
November 23, 2024 ยท View on GitHub
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)