summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go
new file mode 100644
index 00000000..e8074d41
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/GroupPolicyPresentationTextBoxModel.go
@@ -0,0 +1,15 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// GroupPolicyPresentationTextBox Represents an ADMX textBox element and an ADMX text element.
+type GroupPolicyPresentationTextBox struct {
+ // GroupPolicyPresentation is the base model of GroupPolicyPresentationTextBox
+ GroupPolicyPresentation
+ // DefaultValue Localized default string displayed in the text box. The default value is empty.
+ DefaultValue *string `json:"defaultValue,omitempty"`
+ // Required Requirement to enter a value in the text box. Default value is false.
+ Required *bool `json:"required,omitempty"`
+ // MaxLength An unsigned integer that specifies the maximum number of text characters. Default value is 1023.
+ MaxLength *int `json:"maxLength,omitempty"`
+}