mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
28 lines
906 B
Go
28 lines
906 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// AgreementAcceptance undocumented
|
||
|
type AgreementAcceptance struct {
|
||
|
// Entity is the base model of AgreementAcceptance
|
||
|
Entity
|
||
|
// AgreementID undocumented
|
||
|
AgreementID *string `json:"agreementId,omitempty"`
|
||
|
// UserID undocumented
|
||
|
UserID *string `json:"userId,omitempty"`
|
||
|
// AgreementFileID undocumented
|
||
|
AgreementFileID *string `json:"agreementFileId,omitempty"`
|
||
|
// RecordedDateTime undocumented
|
||
|
RecordedDateTime *time.Time `json:"recordedDateTime,omitempty"`
|
||
|
// UserDisplayName undocumented
|
||
|
UserDisplayName *string `json:"userDisplayName,omitempty"`
|
||
|
// UserPrincipalName undocumented
|
||
|
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
|
||
|
// UserEmail undocumented
|
||
|
UserEmail *string `json:"userEmail,omitempty"`
|
||
|
// State undocumented
|
||
|
State *AgreementAcceptanceState `json:"state,omitempty"`
|
||
|
}
|