Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.33 KB

SelectorDefinition.md

File metadata and controls

31 lines (23 loc) · 1.33 KB

SelectorDefinition

Properties

Name Type Description Notes
metadata_selector_definition MetadataSelectorDefinition [optional]
id_selector_definition IdSelectorDefinition [optional]
match_all_selector_definition MatchAllSelectorDefinition [optional]
policy_selector_definition PolicySelectorDefinition [optional]

Example

from finbourne_access.models.selector_definition import SelectorDefinition

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

# convert the object into a dict
selector_definition_dict = selector_definition_instance.to_dict()
# create an instance of SelectorDefinition from a dict
selector_definition_form_dict = selector_definition.from_dict(selector_definition_dict)

Back to Model listBack to API listBack to README