github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelText.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // TextClassificationRequestObject undocumented
     6  type TextClassificationRequestObject struct {
     7  	// Entity is the base model of TextClassificationRequestObject
     8  	Entity
     9  	// Text undocumented
    10  	Text *string `json:"text,omitempty"`
    11  	// SensitiveTypeIDs undocumented
    12  	SensitiveTypeIDs []string `json:"sensitiveTypeIds,omitempty"`
    13  }
    14  
    15  // TextColumn undocumented
    16  type TextColumn struct {
    17  	// Object is the base model of TextColumn
    18  	Object
    19  	// AllowMultipleLines undocumented
    20  	AllowMultipleLines *bool `json:"allowMultipleLines,omitempty"`
    21  	// AppendChangesToExistingText undocumented
    22  	AppendChangesToExistingText *bool `json:"appendChangesToExistingText,omitempty"`
    23  	// LinesForEditing undocumented
    24  	LinesForEditing *int `json:"linesForEditing,omitempty"`
    25  	// MaxLength undocumented
    26  	MaxLength *int `json:"maxLength,omitempty"`
    27  	// TextType undocumented
    28  	TextType *string `json:"textType,omitempty"`
    29  }