blob: 024ca6a4c551162a05cc83d3197aa57be0bf0001 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// DirectoryObject Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
type DirectoryObject struct {
// Entity is the base model of DirectoryObject
Entity
// DeletedDateTime undocumented
DeletedDateTime *time.Time `json:"deletedDateTime,omitempty"`
}
|