Name | Type | Description | Notes |
---|---|---|---|
expressions | List[MetadataExpression] | ||
actions | List[ActionId] | ||
name | str | [optional] | |
description | str | [optional] |
from finbourne_access.models.metadata_selector_definition import MetadataSelectorDefinition
# TODO update the JSON string below
json = "{}"
# create an instance of MetadataSelectorDefinition from a JSON string
metadata_selector_definition_instance = MetadataSelectorDefinition.from_json(json)
# print the JSON string representation of the object
print MetadataSelectorDefinition.to_json()
# convert the object into a dict
metadata_selector_definition_dict = metadata_selector_definition_instance.to_dict()
# create an instance of MetadataSelectorDefinition from a dict
metadata_selector_definition_form_dict = metadata_selector_definition.from_dict(metadata_selector_definition_dict)