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