نمایانگر یک Action که میتواند انجام شود
| Name | Type | Description | Notes |
|---|---|---|---|
| get_dynamic_action | AddonsGetDynamicAction | [optional] | |
| open_direct_link | str | عملیاتی برای هدایت مستقیم کاربر به URL شما (در صورت وجود resource id) | [optional] |
| open_post_manage_page | AddonsOpenPostManagePage | [optional] | |
| open_post_page | AddonsOpenPostPage | [optional] | |
| open_server_link | AddonsOpenServerLink | [optional] |
from kenar_api_client.models.addons_action import AddonsAction
# TODO update the JSON string below
json = "{}"
# create an instance of AddonsAction from a JSON string
addons_action_instance = AddonsAction.from_json(json)
# print the JSON string representation of the object
print(AddonsAction.to_json())
# convert the object into a dict
addons_action_dict = addons_action_instance.to_dict()
# create an instance of AddonsAction from a dict
addons_action_from_dict = AddonsAction.from_dict(addons_action_dict)