Package com.microsoft.graph.models
Class TextColumn
java.lang.Object
com.microsoft.graph.models.TextColumn
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Text Column.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Allow Multiple Lines.The Append Changes To Existing Text.The Lines For Editing.The Max Length.the OData type of the object as returned by the serviceThe Text Type. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
allowMultipleLines
@SerializedName(value="allowMultipleLines", alternate="AllowMultipleLines") @Expose @Nullable public Boolean allowMultipleLinesThe Allow Multiple Lines. Whether to allow multiple lines of text. -
appendChangesToExistingText
@SerializedName(value="appendChangesToExistingText", alternate="AppendChangesToExistingText") @Expose @Nullable public Boolean appendChangesToExistingTextThe Append Changes To Existing Text. Whether updates to this column should replace existing text, or append to it. -
linesForEditing
@SerializedName(value="linesForEditing", alternate="LinesForEditing") @Expose @Nullable public Integer linesForEditingThe Lines For Editing. The size of the text box. -
maxLength
@SerializedName(value="maxLength", alternate="MaxLength") @Expose @Nullable public Integer maxLengthThe Max Length. The maximum number of characters for the value. -
textType
The Text Type. The type of text being stored. Must be one of plain or richText
-
-
Constructor Details
-
TextColumn
public TextColumn()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-