Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.14 KB

MatchAllSelectorDefinition.md

File metadata and controls

30 lines (22 loc) · 1.14 KB

MatchAllSelectorDefinition

Properties

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

Example

from finbourne_access.models.match_all_selector_definition import MatchAllSelectorDefinition

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

# convert the object into a dict
match_all_selector_definition_dict = match_all_selector_definition_instance.to_dict()
# create an instance of MatchAllSelectorDefinition from a dict
match_all_selector_definition_form_dict = match_all_selector_definition.from_dict(match_all_selector_definition_dict)

Back to Model listBack to API listBack to README