summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/NdesConnectorModel.go
blob: 50ce1f3e89957835d4ef94b715acf7037d899b2a (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"`
}