github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelSchema.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // SchemaExtension undocumented
     6  type SchemaExtension struct {
     7  	// Entity is the base model of SchemaExtension
     8  	Entity
     9  	// Description undocumented
    10  	Description *string `json:"description,omitempty"`
    11  	// TargetTypes undocumented
    12  	TargetTypes []string `json:"targetTypes,omitempty"`
    13  	// Properties undocumented
    14  	Properties []ExtensionSchemaProperty `json:"properties,omitempty"`
    15  	// Status undocumented
    16  	Status *string `json:"status,omitempty"`
    17  	// Owner undocumented
    18  	Owner *string `json:"owner,omitempty"`
    19  }