github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelExpression.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // ExpressionEvaluationDetails undocumented
     6  type ExpressionEvaluationDetails struct {
     7  	// Object is the base model of ExpressionEvaluationDetails
     8  	Object
     9  	// ExpressionResult undocumented
    10  	ExpressionResult *bool `json:"expressionResult,omitempty"`
    11  	// Expression undocumented
    12  	Expression *string `json:"expression,omitempty"`
    13  	// ExpressionEvaluationDetails undocumented
    14  	ExpressionEvaluationDetails []ExpressionEvaluationDetails `json:"expressionEvaluationDetails,omitempty"`
    15  	// PropertyToEvaluate undocumented
    16  	PropertyToEvaluate *PropertyToEvaluate `json:"propertyToEvaluate,omitempty"`
    17  }
    18  
    19  // ExpressionInputObject undocumented
    20  type ExpressionInputObject struct {
    21  	// Object is the base model of ExpressionInputObject
    22  	Object
    23  	// Definition undocumented
    24  	Definition *ObjectDefinition `json:"definition,omitempty"`
    25  	// Properties undocumented
    26  	Properties []StringKeyObjectValuePair `json:"properties,omitempty"`
    27  }