1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
import "time"
// OrgContact undocumented
type OrgContact struct {
// DirectoryObject is the base model of OrgContact
DirectoryObject
// Addresses undocumented
Addresses []PhysicalOfficeAddress `json:"addresses,omitempty"`
// CompanyName undocumented
CompanyName *string `json:"companyName,omitempty"`
// Department undocumented
Department *string `json:"department,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// GivenName undocumented
GivenName *string `json:"givenName,omitempty"`
// JobTitle undocumented
JobTitle *string `json:"jobTitle,omitempty"`
// Mail undocumented
Mail *string `json:"mail,omitempty"`
// MailNickname undocumented
MailNickname *string `json:"mailNickname,omitempty"`
// OnPremisesSyncEnabled undocumented
OnPremisesSyncEnabled *bool `json:"onPremisesSyncEnabled,omitempty"`
// OnPremisesLastSyncDateTime undocumented
OnPremisesLastSyncDateTime *time.Time `json:"onPremisesLastSyncDateTime,omitempty"`
// OnPremisesProvisioningErrors undocumented
OnPremisesProvisioningErrors []OnPremisesProvisioningError `json:"onPremisesProvisioningErrors,omitempty"`
// Phones undocumented
Phones []Phone `json:"phones,omitempty"`
// ProxyAddresses undocumented
ProxyAddresses []string `json:"proxyAddresses,omitempty"`
// Surname undocumented
Surname *string `json:"surname,omitempty"`
// Manager undocumented
Manager *DirectoryObject `json:"manager,omitempty"`
// DirectReports undocumented
DirectReports []DirectoryObject `json:"directReports,omitempty"`
// MemberOf undocumented
MemberOf []DirectoryObject `json:"memberOf,omitempty"`
// TransitiveMemberOf undocumented
TransitiveMemberOf []DirectoryObject `json:"transitiveMemberOf,omitempty"`
}
|