The settings for the Feedback & Support menu button.
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | The absolute URL to the website address which will be opened when clicking the Feedback & Support menu button. | [optional] |
| visible | bool | Shows or hides the Feedback & Support menu button. | [optional] [readonly] |
from docspace_api_sdk.models.feedback_config import FeedbackConfig
# TODO update the JSON string below
json = "{}"
# create an instance of FeedbackConfig from a JSON string
feedback_config_instance = FeedbackConfig.from_json(json)
# print the JSON string representation of the object
print(FeedbackConfig.to_json())
# convert the object into a dict
feedback_config_dict = feedback_config_instance.to_dict()
# create an instance of FeedbackConfig from a dict
feedback_config_from_dict = FeedbackConfig.from_dict(feedback_config_dict)