Interface DialogTextInputOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
DialogTextInput, DialogTextInput.Builder

@Generated public interface DialogTextInputOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Initial/default value.
    com.google.protobuf.ByteString
    Initial/default value.
    Identifier used when submitting the dialog.
    com.google.protobuf.ByteString
    Identifier used when submitting the dialog.
    Display label for the field.
    com.google.protobuf.ByteString
    Display label for the field.
    boolean
    Whether to show the label.
    int
    Maximum character length.
    boolean
    Whether to allow multi-line input.
    int
    Display height for multiline input in pixels.
    int
    Maximum lines for multiline input.
    int
    Display width in pixels.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getKey

      String getKey()
      Identifier used when submitting the dialog.
      
      string key = 1;
      Returns:
      The key.
    • getKeyBytes

      com.google.protobuf.ByteString getKeyBytes()
      Identifier used when submitting the dialog.
      
      string key = 1;
      Returns:
      The bytes for key.
    • getLabel

      String getLabel()
      Display label for the field.
      
      string label = 2;
      Returns:
      The label.
    • getLabelBytes

      com.google.protobuf.ByteString getLabelBytes()
      Display label for the field.
      
      string label = 2;
      Returns:
      The bytes for label.
    • getWidth

      int getWidth()
      Display width in pixels.
      Range: 1-1024, default: 200.
      
      int32 width = 3;
      Returns:
      The width.
    • getLabelVisible

      boolean getLabelVisible()
      Whether to show the label.
      Default: true.
      
      bool label_visible = 4;
      Returns:
      The labelVisible.
    • getInitial

      String getInitial()
      Initial/default value.
      
      string initial = 5;
      Returns:
      The initial.
    • getInitialBytes

      com.google.protobuf.ByteString getInitialBytes()
      Initial/default value.
      
      string initial = 5;
      Returns:
      The bytes for initial.
    • getMaxLength

      int getMaxLength()
      Maximum character length.
      Default: 32.
      
      int32 max_length = 6;
      Returns:
      The maxLength.
    • getMultiline

      boolean getMultiline()
      Whether to allow multi-line input.
      
      bool multiline = 7;
      Returns:
      The multiline.
    • getMultilineMaxLines

      int getMultilineMaxLines()
      Maximum lines for multiline input.
      
      int32 multiline_max_lines = 8;
      Returns:
      The multilineMaxLines.
    • getMultilineHeight

      int getMultilineHeight()
      Display height for multiline input in pixels.
      
      int32 multiline_height = 9;
      Returns:
      The multilineHeight.