Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

File metadata and controls

30 lines (21 loc) · 1.29 KB

GetPostStatsResponsePostStats

Properties

Name Type Description Notes
daily List[GetPostStatsResponseDailyStats] مقدار روزانه آمار در هفت روز گذشته [optional]
total int مجموع آمار (مثلاً بازدید) [optional]

Example

from kenar_api_client.models.get_post_stats_response_post_stats import GetPostStatsResponsePostStats

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

# convert the object into a dict
get_post_stats_response_post_stats_dict = get_post_stats_response_post_stats_instance.to_dict()
# create an instance of GetPostStatsResponsePostStats from a dict
get_post_stats_response_post_stats_from_dict = GetPostStatsResponsePostStats.from_dict(get_post_stats_response_post_stats_dict)

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