blob: 75c1f6270a4e1b2d629782ca186895291f0b815c (
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"
// 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"`
}
|