PluginResponse

Plugin serializer.

Properties

NameTypeDescriptionNotes
appbuilder_menu_itemsList[AppBuilderMenuItemResponse]
appbuilder_viewsList[AppBuilderViewResponse]
external_viewsList[ExternalViewResponse]Aggregate all external views. Both 'external_views' and 'appbuilder_menu_items' are included here.
fastapi_appsList[FastAPIAppResponse]
fastapi_root_middlewaresList[FastAPIRootMiddlewareResponse]
flask_blueprintsList[str]
global_operator_extra_linksList[str]
listenersList[str]
macrosList[str]
namestr
operator_extra_linksList[str]
react_appsList[ReactAppResponse]
sourcestr
timetablesList[str]

Example

from airflow_client.client.models.plugin_response import PluginResponse

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

# convert the object into a dict
plugin_response_dict = plugin_response_instance.to_dict()
# create an instance of PluginResponse from a dict
plugin_response_from_dict = PluginResponse.from_dict(plugin_response_dict)

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