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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // NDESConnector Entity which represents an OnPrem Ndes connector.
     8  type NDESConnector struct {
     9  	// Entity is the base model of NDESConnector
    10  	Entity
    11  	// LastConnectionDateTime Last connection time for the Ndes Connector
    12  	LastConnectionDateTime *time.Time `json:"lastConnectionDateTime,omitempty"`
    13  	// State Ndes Connector Status
    14  	State *NDESConnectorState `json:"state,omitempty"`
    15  	// DisplayName The friendly name of the Ndes Connector.
    16  	DisplayName *string `json:"displayName,omitempty"`
    17  }