Reference documentation and code samples for the Google Apps Chat V1 Client class MessageReplyOption.
Specifies how to reply to a message.
More states might be added in the future.
Protobuf type google.chat.v1.CreateMessageRequest.MessageReplyOption
Namespace
Google \ Apps \ Chat \ V1 \ CreateMessageRequestMethods
static::name
Parameter | |
---|---|
Name | Description |
value |
mixed
|
static::value
Parameter | |
---|---|
Name | Description |
name |
mixed
|
Constants
MESSAGE_REPLY_OPTION_UNSPECIFIED
Value: 0
Default. Starts a new thread. Using this option ignores any thread
ID or
thread_key
that's included.
Generated from protobuf enum MESSAGE_REPLY_OPTION_UNSPECIFIED = 0;
REPLY_MESSAGE_FALLBACK_TO_NEW_THREAD
Value: 1
Creates the message as a reply to the thread specified by thread
ID or
thread_key
. If it fails, the
message starts a new thread instead.
Generated from protobuf enum REPLY_MESSAGE_FALLBACK_TO_NEW_THREAD = 1;
REPLY_MESSAGE_OR_FAIL
Value: 2
Creates the message as a reply to the thread specified by thread
ID or
thread_key
. If a new thread_key
is used, a new thread is created. If the message creation fails, a
NOT_FOUND
error is returned instead.
Generated from protobuf enum REPLY_MESSAGE_OR_FAIL = 2;