1// Code generated by msgraph.go/gen DO NOT EDIT.
2
3package msgraph
4
5import "time"
6
7// Employee undocumented
8type Employee struct {
9	// Entity is the base model of Employee
10	Entity
11	// Number undocumented
12	Number *string `json:"number,omitempty"`
13	// DisplayName undocumented
14	DisplayName *string `json:"displayName,omitempty"`
15	// GivenName undocumented
16	GivenName *string `json:"givenName,omitempty"`
17	// MiddleName undocumented
18	MiddleName *string `json:"middleName,omitempty"`
19	// Surname undocumented
20	Surname *string `json:"surname,omitempty"`
21	// JobTitle undocumented
22	JobTitle *string `json:"jobTitle,omitempty"`
23	// Address undocumented
24	Address *PostalAddressType `json:"address,omitempty"`
25	// PhoneNumber undocumented
26	PhoneNumber *string `json:"phoneNumber,omitempty"`
27	// MobilePhone undocumented
28	MobilePhone *string `json:"mobilePhone,omitempty"`
29	// Email undocumented
30	Email *string `json:"email,omitempty"`
31	// PersonalEmail undocumented
32	PersonalEmail *string `json:"personalEmail,omitempty"`
33	// EmploymentDate undocumented
34	EmploymentDate *Date `json:"employmentDate,omitempty"`
35	// TerminationDate undocumented
36	TerminationDate *Date `json:"terminationDate,omitempty"`
37	// Status undocumented
38	Status *string `json:"status,omitempty"`
39	// BirthDate undocumented
40	BirthDate *Date `json:"birthDate,omitempty"`
41	// StatisticsGroupCode undocumented
42	StatisticsGroupCode *string `json:"statisticsGroupCode,omitempty"`
43	// LastModifiedDateTime undocumented
44	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
45	// Picture undocumented
46	Picture []Picture `json:"picture,omitempty"`
47}
48