Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

TiktokFeedRecommendedPostRequest

Properties

Name Type Description Notes
cookie str [optional]
region str [optional] [default to 'US']
limit int [optional] [default to 20]

Example

from unifapi.models.tiktok_feed_recommended_post_request import TiktokFeedRecommendedPostRequest

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

# convert the object into a dict
tiktok_feed_recommended_post_request_dict = tiktok_feed_recommended_post_request_instance.to_dict()
# create an instance of TiktokFeedRecommendedPostRequest from a dict
tiktok_feed_recommended_post_request_from_dict = TiktokFeedRecommendedPostRequest.from_dict(tiktok_feed_recommended_post_request_dict)

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