Skip to main content

MatchTerm

Properties

NameTypeDescriptionNotes
namestrThe attribute name[optional]
valuestrThe attribute value[optional]
opstrThe operator between name and value[optional]
containerboolIf it is a container or a real match term[optional] [default to False]
var_andboolIf it is AND logical operator for the children match terms[optional] [default to False]
children[]Dict[str, object]The children under this match term[optional]
}

Example

from sailpoint.v2024.models.match_term import MatchTerm

match_term = MatchTerm(
name='mail',
value='1234 Albany Dr',
op='eq',
container=True,
var_and=False,
children=[{name=businessCategory, value=Service, op=eq, container=false, and=false, children=null}]
)

[Back to top]