Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 901 Bytes

File metadata and controls

30 lines (21 loc) · 901 Bytes

BlockedUser

Properties

Name Type Description Notes
block_id int [optional]
created_at datetime [optional]

Example

from openapi_client.models.blocked_user import BlockedUser

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

# convert the object into a dict
blocked_user_dict = blocked_user_instance.to_dict()
# create an instance of BlockedUser from a dict
blocked_user_from_dict = BlockedUser.from_dict(blocked_user_dict)

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