summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelText.go
blob: 39839bdf19a1ea9c872eef24378d63db6c494f47 (plain) (blame)
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
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

// TextClassificationRequestObject undocumented
type TextClassificationRequestObject struct {
	// Entity is the base model of TextClassificationRequestObject
	Entity
	// Text undocumented
	Text *string `json:"text,omitempty"`
	// SensitiveTypeIDs undocumented
	SensitiveTypeIDs []string `json:"sensitiveTypeIds,omitempty"`
}

// TextColumn undocumented
type TextColumn struct {
	// Object is the base model of TextColumn
	Object
	// AllowMultipleLines undocumented
	AllowMultipleLines *bool `json:"allowMultipleLines,omitempty"`
	// AppendChangesToExistingText undocumented
	AppendChangesToExistingText *bool `json:"appendChangesToExistingText,omitempty"`
	// LinesForEditing undocumented
	LinesForEditing *int `json:"linesForEditing,omitempty"`
	// MaxLength undocumented
	MaxLength *int `json:"maxLength,omitempty"`
	// TextType undocumented
	TextType *string `json:"textType,omitempty"`
}