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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Property undocumented
     6  type Property struct {
     7  	// Object is the base model of Property
     8  	Object
     9  	// Name undocumented
    10  	Name *string `json:"name,omitempty"`
    11  	// Type undocumented
    12  	Type *PropertyType `json:"type,omitempty"`
    13  	// IsSearchable undocumented
    14  	IsSearchable *bool `json:"isSearchable,omitempty"`
    15  	// IsRetrievable undocumented
    16  	IsRetrievable *bool `json:"isRetrievable,omitempty"`
    17  	// IsQueryable undocumented
    18  	IsQueryable *bool `json:"isQueryable,omitempty"`
    19  }
    20  
    21  // PropertyToEvaluate undocumented
    22  type PropertyToEvaluate struct {
    23  	// Object is the base model of PropertyToEvaluate
    24  	Object
    25  	// PropertyName undocumented
    26  	PropertyName *string `json:"propertyName,omitempty"`
    27  	// PropertyValue undocumented
    28  	PropertyValue *string `json:"propertyValue,omitempty"`
    29  }