blob: 36ee49e85e43faf1d974adc77bfa84c0375344d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// CompanyDetail undocumented
type CompanyDetail struct {
// Object is the base model of CompanyDetail
Object
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// Pronunciation undocumented
Pronunciation *string `json:"pronunciation,omitempty"`
// Department undocumented
Department *string `json:"department,omitempty"`
// OfficeLocation undocumented
OfficeLocation *string `json:"officeLocation,omitempty"`
// Address undocumented
Address *PhysicalAddress `json:"address,omitempty"`
// WebURL undocumented
WebURL *string `json:"webUrl,omitempty"`
}
|