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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Extension undocumented
     6  type Extension struct {
     7  	// Entity is the base model of Extension
     8  	Entity
     9  }
    10  
    11  // ExtensionProperty undocumented
    12  type ExtensionProperty struct {
    13  	// DirectoryObject is the base model of ExtensionProperty
    14  	DirectoryObject
    15  	// AppDisplayName undocumented
    16  	AppDisplayName *string `json:"appDisplayName,omitempty"`
    17  	// Name undocumented
    18  	Name *string `json:"name,omitempty"`
    19  	// DataType undocumented
    20  	DataType *string `json:"dataType,omitempty"`
    21  	// IsSyncedFromOnPremises undocumented
    22  	IsSyncedFromOnPremises *bool `json:"isSyncedFromOnPremises,omitempty"`
    23  	// TargetObjects undocumented
    24  	TargetObjects []string `json:"targetObjects,omitempty"`
    25  }
    26  
    27  // ExtensionSchemaProperty undocumented
    28  type ExtensionSchemaProperty struct {
    29  	// Object is the base model of ExtensionSchemaProperty
    30  	Object
    31  	// Name undocumented
    32  	Name *string `json:"name,omitempty"`
    33  	// Type undocumented
    34  	Type *string `json:"type,omitempty"`
    35  }