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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// Agreement undocumented
type Agreement struct {
// Entity is the base model of Agreement
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// IsViewingBeforeAcceptanceRequired undocumented
IsViewingBeforeAcceptanceRequired *bool `json:"isViewingBeforeAcceptanceRequired,omitempty"`
// Files undocumented
Files []AgreementFile `json:"files,omitempty"`
}
// 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"`
}
// AgreementFile undocumented
type AgreementFile struct {
// Entity is the base model of AgreementFile
Entity
// Language undocumented
Language *string `json:"language,omitempty"`
// FileName undocumented
FileName *string `json:"fileName,omitempty"`
// FileData undocumented
FileData *AgreementFileData `json:"fileData,omitempty"`
// IsDefault undocumented
IsDefault *bool `json:"isDefault,omitempty"`
}
// AgreementFileData undocumented
type AgreementFileData struct {
// Object is the base model of AgreementFileData
Object
// Data undocumented
Data *Binary `json:"data,omitempty"`
}
|