4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-09-11 00:42:30 +00:00

Update vendor yaegashi/msgraph.go to v0.1.2 (2)

This commit is contained in:
Qais Patankar
2020-03-15 22:43:46 +00:00
committed by Wim
parent 802c80f40c
commit 76e5fe5a87
4255 changed files with 191113 additions and 196894 deletions

View File

@@ -0,0 +1,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"`
}