Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

GetV1PageLikes

Properties

Name Type Description Notes
url_id_ws str
did_like bool
comment_count int
like_count int
status APIStatus

Example

from client.models.get_v1_page_likes import GetV1PageLikes

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

# convert the object into a dict
get_v1_page_likes_dict = get_v1_page_likes_instance.to_dict()
# create an instance of GetV1PageLikes from a dict
get_v1_page_likes_from_dict = GetV1PageLikes.from_dict(get_v1_page_likes_dict)

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