ReactAppResponse

Serializer for React App Plugin responses.

Properties

NameTypeDescriptionNotes
bundle_urlstr
categorystr[optional]
destinationstr[optional] [default to ‘nav’]
iconstr[optional]
icon_dark_modestr[optional]
namestr
url_routestr[optional]

Example

from airflow_client.client.models.react_app_response import ReactAppResponse

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

# convert the object into a dict
react_app_response_dict = react_app_response_instance.to_dict()
# create an instance of ReactAppResponse from a dict
react_app_response_from_dict = ReactAppResponse.from_dict(react_app_response_dict)

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