Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

AddonsOpenPostPage

عملیاتی برای باز کردن صفحه آگهی در اپلیکیشن

Properties

Name Type Description Notes
post_token str توکن آگهی برای باز کردن

Example

from kenar_api_client.models.addons_open_post_page import AddonsOpenPostPage

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

# convert the object into a dict
addons_open_post_page_dict = addons_open_post_page_instance.to_dict()
# create an instance of AddonsOpenPostPage from a dict
addons_open_post_page_from_dict = AddonsOpenPostPage.from_dict(addons_open_post_page_dict)

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