Skip to main content

Formcondition

Properties

NameTypeDescriptionNotes
RuleOperatorEnum [ "AND", "OR" ]ConditionRuleLogicalOperatorType value. AND ConditionRuleLogicalOperatorTypeAnd OR ConditionRuleLogicalOperatorTypeOr[optional]
Rules[]ConditionruleList of rules.[optional]
Effects[]ConditioneffectList of effects.[optional]

Examples

  • Prepare the resource
$Formcondition = Initialize-Formcondition  -RuleOperator AND `
-Rules null `
-Effects null
  • Convert the resource to JSON
$Formcondition | ConvertTo-JSON

[Back to top]