AppBuilderViewResponse

Serializer for AppBuilder View responses.

Properties

NameTypeDescriptionNotes
categorystr[optional]
labelstr[optional]
namestr[optional]
viewstr[optional]

Example

from airflow_client.client.models.app_builder_view_response import AppBuilderViewResponse

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

# convert the object into a dict
app_builder_view_response_dict = app_builder_view_response_instance.to_dict()
# create an instance of AppBuilderViewResponse from a dict
app_builder_view_response_from_dict = AppBuilderViewResponse.from_dict(app_builder_view_response_dict)

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