Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.21 KB

MetadataSelectorDefinition.md

File metadata and controls

31 lines (23 loc) · 1.21 KB

MetadataSelectorDefinition

Properties

Name Type Description Notes
expressions List[MetadataExpression]
actions List[ActionId]
name str [optional]
description str [optional]

Example

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)

Back to Model listBack to API listBack to README