summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-03-08 17:08:18 +0100
committerGitHub <noreply@github.com>2020-03-08 17:08:18 +0100
commit9785edd26366be8eb11c2435f50f90a5c8eea7fc (patch)
treee8e236b5b273e7535c607507cc059f3b957068a1 /vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go
parent2a0bc11b684f63305258e338c5f1d0e91eb24414 (diff)
downloadmatterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.gz
matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.bz2
matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.zip
Remove replace directives and use own fork to make go get work again (#1028)
See https://github.com/golang/go/issues/30354 go get doesn't honor the go.mod replace options.
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go
new file mode 100644
index 00000000..92a2d7ba
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/TermsAndConditionsModel.go
@@ -0,0 +1,37 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "time"
+
+// TermsAndConditions A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune.
+type TermsAndConditions struct {
+ // Entity is the base model of TermsAndConditions
+ Entity
+ // CreatedDateTime DateTime the object was created.
+ CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
+ // ModifiedDateTime DateTime the object was last modified.
+ ModifiedDateTime *time.Time `json:"modifiedDateTime,omitempty"`
+ // LastModifiedDateTime DateTime the object was last modified.
+ LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
+ // DisplayName Administrator-supplied name for the T&C policy.
+ DisplayName *string `json:"displayName,omitempty"`
+ // Description Administrator-supplied description of the T&C policy.
+ Description *string `json:"description,omitempty"`
+ // Title Administrator-supplied title of the terms and conditions. This is shown to the user on prompts to accept the T&C policy.
+ Title *string `json:"title,omitempty"`
+ // BodyText Administrator-supplied body text of the terms and conditions, typically the terms themselves. This is shown to the user on prompts to accept the T&C policy.
+ BodyText *string `json:"bodyText,omitempty"`
+ // AcceptanceStatement Administrator-supplied explanation of the terms and conditions, typically describing what it means to accept the terms and conditions set out in the T&C policy. This is shown to the user on prompts to accept the T&C policy.
+ AcceptanceStatement *string `json:"acceptanceStatement,omitempty"`
+ // Version Integer indicating the current version of the terms. Incremented when an administrator makes a change to the terms and wishes to require users to re-accept the modified T&C policy.
+ Version *int `json:"version,omitempty"`
+ // RoleScopeTagIDs List of Scope Tags for this Entity instance.
+ RoleScopeTagIDs []string `json:"roleScopeTagIds,omitempty"`
+ // GroupAssignments undocumented
+ GroupAssignments []TermsAndConditionsGroupAssignment `json:"groupAssignments,omitempty"`
+ // Assignments undocumented
+ Assignments []TermsAndConditionsAssignment `json:"assignments,omitempty"`
+ // AcceptanceStatuses undocumented
+ AcceptanceStatuses []TermsAndConditionsAcceptanceStatus `json:"acceptanceStatuses,omitempty"`
+}