Interface BotUpdateConfigEntryRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BotUpdateConfigEntryRequest, BotUpdateConfigEntryRequest.Builder
@Generated
public interface BotUpdateConfigEntryRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetBotId()The profile UUID of the bot to update configuration for.com.google.protobuf.ByteStringThe profile UUID of the bot to update configuration for.The UUID of the SoulFire instance containing the bot.com.google.protobuf.ByteStringThe UUID of the SoulFire instance containing the bot.getKey()The key within the namespace to update.com.google.protobuf.ByteStringThe key within the namespace to update.The settings namespace (e.g., plugin ID or "bot" for core bot settings).com.google.protobuf.ByteStringThe settings namespace (e.g., plugin ID or "bot" for core bot settings).com.google.protobuf.ValuegetValue()The new value to set for this configuration entry.com.google.protobuf.ValueOrBuilderThe new value to set for this configuration entry.booleanhasValue()The new value to set for this configuration entry.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getInstanceId
String getInstanceId()The UUID of the SoulFire instance containing the bot.
string instance_id = 1;- Returns:
- The instanceId.
-
getInstanceIdBytes
com.google.protobuf.ByteString getInstanceIdBytes()The UUID of the SoulFire instance containing the bot.
string instance_id = 1;- Returns:
- The bytes for instanceId.
-
getBotId
String getBotId()The profile UUID of the bot to update configuration for.
string bot_id = 2;- Returns:
- The botId.
-
getBotIdBytes
com.google.protobuf.ByteString getBotIdBytes()The profile UUID of the bot to update configuration for.
string bot_id = 2;- Returns:
- The bytes for botId.
-
getNamespace
String getNamespace()The settings namespace (e.g., plugin ID or "bot" for core bot settings). Examples: "bot", "auto-reconnect", "chat-message-controller"
string namespace = 3;- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()The settings namespace (e.g., plugin ID or "bot" for core bot settings). Examples: "bot", "auto-reconnect", "chat-message-controller"
string namespace = 3;- Returns:
- The bytes for namespace.
-
getKey
String getKey()The key within the namespace to update. Must be a valid setting key defined for that namespace.
string key = 4;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()The key within the namespace to update. Must be a valid setting key defined for that namespace.
string key = 4;- Returns:
- The bytes for key.
-
hasValue
boolean hasValue()The new value to set for this configuration entry. Must be a valid protobuf Value (null, number, string, bool, list, or struct).
.google.protobuf.Value value = 5;- Returns:
- Whether the value field is set.
-
getValue
com.google.protobuf.Value getValue()The new value to set for this configuration entry. Must be a valid protobuf Value (null, number, string, bool, list, or struct).
.google.protobuf.Value value = 5;- Returns:
- The value.
-
getValueOrBuilder
com.google.protobuf.ValueOrBuilder getValueOrBuilder()The new value to set for this configuration entry. Must be a valid protobuf Value (null, number, string, bool, list, or struct).
.google.protobuf.Value value = 5;
-