diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go new file mode 100644 index 00000000..50ce1f3e --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/NdesConnectorModel.go @@ -0,0 +1,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"` +} |