blob: 4ce52fdd3aecf6280d578048199c7eeb517a4175 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
import "time"
// NamedLocation undocumented
type NamedLocation struct {
// Entity is the base model of NamedLocation
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// CreatedDateTime undocumented
CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
// ModifiedDateTime undocumented
ModifiedDateTime *time.Time `json:"modifiedDateTime,omitempty"`
}
|