mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
16 lines
757 B
Go
16 lines
757 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// BinaryManagementConditionExpression undocumented
|
|
type BinaryManagementConditionExpression struct {
|
|
// ManagementConditionExpressionModel is the base model of BinaryManagementConditionExpression
|
|
ManagementConditionExpressionModel
|
|
// Operator The operator used in the evaluation of the binary operation.
|
|
Operator *BinaryManagementConditionExpressionOperatorType `json:"operator,omitempty"`
|
|
// FirstOperand The first operand of the binary operation.
|
|
FirstOperand *ManagementConditionExpressionModel `json:"firstOperand,omitempty"`
|
|
// SecondOperand The second operand of the binary operation.
|
|
SecondOperand *ManagementConditionExpressionModel `json:"secondOperand,omitempty"`
|
|
}
|