Interface UploadConversationRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UploadConversationRequest,UploadConversationRequest.Builder
public interface UploadConversationRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationgetConversation()Required.StringgetConversationId()Optional.com.google.protobuf.ByteStringgetConversationIdBytes()Optional.ConversationOrBuildergetConversationOrBuilder()Required.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.RedactionConfiggetRedactionConfig()Optional.RedactionConfigOrBuildergetRedactionConfigOrBuilder()Optional.booleanhasConversation()Required.booleanhasRedactionConfig()Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent resource of the conversation.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent resource of the conversation.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
hasConversation
boolean hasConversation()
Required. The conversation resource to create.
.google.cloud.contactcenterinsights.v1.Conversation conversation = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the conversation field is set.
-
getConversation
Conversation getConversation()
Required. The conversation resource to create.
.google.cloud.contactcenterinsights.v1.Conversation conversation = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The conversation.
-
getConversationOrBuilder
ConversationOrBuilder getConversationOrBuilder()
Required. The conversation resource to create.
.google.cloud.contactcenterinsights.v1.Conversation conversation = 2 [(.google.api.field_behavior) = REQUIRED];
-
getConversationId
String getConversationId()
Optional. A unique ID for the new conversation. This ID will become the final component of the conversation's resource name. If no ID is specified, a server-generated ID will be used. This value should be 4-64 characters and must match the regular expression `^[a-z0-9-]{4,64}$`. Valid characters are `[a-z][0-9]-`string conversation_id = 3 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The conversationId.
-
getConversationIdBytes
com.google.protobuf.ByteString getConversationIdBytes()
Optional. A unique ID for the new conversation. This ID will become the final component of the conversation's resource name. If no ID is specified, a server-generated ID will be used. This value should be 4-64 characters and must match the regular expression `^[a-z0-9-]{4,64}$`. Valid characters are `[a-z][0-9]-`string conversation_id = 3 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The bytes for conversationId.
-
hasRedactionConfig
boolean hasRedactionConfig()
Optional. DLP settings for transcript redaction. Optional, will default to the config specified in Settings.
.google.cloud.contactcenterinsights.v1.RedactionConfig redaction_config = 4 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- Whether the redactionConfig field is set.
-
getRedactionConfig
RedactionConfig getRedactionConfig()
Optional. DLP settings for transcript redaction. Optional, will default to the config specified in Settings.
.google.cloud.contactcenterinsights.v1.RedactionConfig redaction_config = 4 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The redactionConfig.
-
getRedactionConfigOrBuilder
RedactionConfigOrBuilder getRedactionConfigOrBuilder()
Optional. DLP settings for transcript redaction. Optional, will default to the config specified in Settings.
.google.cloud.contactcenterinsights.v1.RedactionConfig redaction_config = 4 [(.google.api.field_behavior) = OPTIONAL];
-
-