mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "time"
|
|
|
|
// EmailActivityUserDetail undocumented
|
|
type EmailActivityUserDetail struct {
|
|
// Entity is the base model of EmailActivityUserDetail
|
|
Entity
|
|
// ReportRefreshDate undocumented
|
|
ReportRefreshDate *time.Time `json:"reportRefreshDate,omitempty"`
|
|
// UserPrincipalName undocumented
|
|
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
|
|
// DisplayName undocumented
|
|
DisplayName *string `json:"displayName,omitempty"`
|
|
// IsDeleted undocumented
|
|
IsDeleted *bool `json:"isDeleted,omitempty"`
|
|
// DeletedDate undocumented
|
|
DeletedDate *time.Time `json:"deletedDate,omitempty"`
|
|
// LastActivityDate undocumented
|
|
LastActivityDate *time.Time `json:"lastActivityDate,omitempty"`
|
|
// SendCount undocumented
|
|
SendCount *int `json:"sendCount,omitempty"`
|
|
// ReceiveCount undocumented
|
|
ReceiveCount *int `json:"receiveCount,omitempty"`
|
|
// ReadCount undocumented
|
|
ReadCount *int `json:"readCount,omitempty"`
|
|
// AssignedProducts undocumented
|
|
AssignedProducts []string `json:"assignedProducts,omitempty"`
|
|
// ReportPeriod undocumented
|
|
ReportPeriod *string `json:"reportPeriod,omitempty"`
|
|
}
|