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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // TextColumn undocumented
     6  type TextColumn struct {
     7  	// Object is the base model of TextColumn
     8  	Object
     9  	// AllowMultipleLines undocumented
    10  	AllowMultipleLines *bool `json:"allowMultipleLines,omitempty"`
    11  	// AppendChangesToExistingText undocumented
    12  	AppendChangesToExistingText *bool `json:"appendChangesToExistingText,omitempty"`
    13  	// LinesForEditing undocumented
    14  	LinesForEditing *int `json:"linesForEditing,omitempty"`
    15  	// MaxLength undocumented
    16  	MaxLength *int `json:"maxLength,omitempty"`
    17  	// TextType undocumented
    18  	TextType *string `json:"textType,omitempty"`
    19  }