Interface DialogBooleanInputOrBuilder

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

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

    Modifier and Type
    Method
    Description
    boolean
    Initial checked state.
    Identifier used when submitting the dialog.
    com.google.protobuf.ByteString
    Identifier used when submitting the dialog.
    Display label for the checkbox.
    com.google.protobuf.ByteString
    Display label for the checkbox.
    String value to submit when unchecked.
    com.google.protobuf.ByteString
    String value to submit when unchecked.
    String value to submit when checked.
    com.google.protobuf.ByteString
    String value to submit when checked.

    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 checkbox.
      
      string label = 2;
      Returns:
      The label.
    • getLabelBytes

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

      boolean getInitial()
      Initial checked state.
      Default: false.
      
      bool initial = 3;
      Returns:
      The initial.
    • getOnTrue

      String getOnTrue()
      String value to submit when checked.
      Default: "true".
      
      string on_true = 4;
      Returns:
      The onTrue.
    • getOnTrueBytes

      com.google.protobuf.ByteString getOnTrueBytes()
      String value to submit when checked.
      Default: "true".
      
      string on_true = 4;
      Returns:
      The bytes for onTrue.
    • getOnFalse

      String getOnFalse()
      String value to submit when unchecked.
      Default: "false".
      
      string on_false = 5;
      Returns:
      The onFalse.
    • getOnFalseBytes

      com.google.protobuf.ByteString getOnFalseBytes()
      String value to submit when unchecked.
      Default: "false".
      
      string on_false = 5;
      Returns:
      The bytes for onFalse.