Skip to content

Latest commit

History

History
30 lines (21 loc) · 972 Bytes

File metadata and controls

30 lines (21 loc) · 972 Bytes

UserVerification

Properties

NameTypeDescriptionNotes
verifiedbool
verified_typestr[optional]

Example

fromtwitter_openapi_python_generated.models.user_verificationimportUserVerification# TODO update the JSON string belowjson="{}"# create an instance of UserVerification from a JSON stringuser_verification_instance=UserVerification.from_json(json)
# print the JSON string representation of the objectprint(UserVerification.to_json())
# convert the object into a dictuser_verification_dict=user_verification_instance.to_dict()
# create an instance of UserVerification from a dictuser_verification_from_dict=UserVerification.from_dict(user_verification_dict)

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