Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

VariableCollectionResponse

Variable Collection serializer for responses.

Properties

NameTypeDescriptionNotes
total_entriesint
variablesList[VariableResponse]

Example

fromairflow_client.client.models.variable_collection_responseimportVariableCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of VariableCollectionResponse from a JSON stringvariable_collection_response_instance=VariableCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(VariableCollectionResponse.to_json())
# convert the object into a dictvariable_collection_response_dict=variable_collection_response_instance.to_dict()
# create an instance of VariableCollectionResponse from a dictvariable_collection_response_from_dict=VariableCollectionResponse.from_dict(variable_collection_response_dict)

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