/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/contactcenterinsights/v1/contact_center_insights.proto

package com.google.cloud.contactcenterinsights.v1;

public interface IngestConversationsRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.contactcenterinsights.v1.IngestConversationsRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * A cloud storage bucket source.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource gcs_source = 2;
   * </code>
   *
   * @return Whether the gcsSource field is set.
   */
  boolean hasGcsSource();
  /**
   *
   *
   * <pre>
   * A cloud storage bucket source.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource gcs_source = 2;
   * </code>
   *
   * @return The gcsSource.
   */
  com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource getGcsSource();
  /**
   *
   *
   * <pre>
   * A cloud storage bucket source.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSource gcs_source = 2;
   * </code>
   */
  com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.GcsSourceOrBuilder
      getGcsSourceOrBuilder();

  /**
   *
   *
   * <pre>
   * Configuration for when `source` contains conversation transcripts.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfig transcript_object_config = 3;
   * </code>
   *
   * @return Whether the transcriptObjectConfig field is set.
   */
  boolean hasTranscriptObjectConfig();
  /**
   *
   *
   * <pre>
   * Configuration for when `source` contains conversation transcripts.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfig transcript_object_config = 3;
   * </code>
   *
   * @return The transcriptObjectConfig.
   */
  com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfig
      getTranscriptObjectConfig();
  /**
   *
   *
   * <pre>
   * Configuration for when `source` contains conversation transcripts.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.TranscriptObjectConfig transcript_object_config = 3;
   * </code>
   */
  com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest
          .TranscriptObjectConfigOrBuilder
      getTranscriptObjectConfigOrBuilder();

  /**
   *
   *
   * <pre>
   * Required. The parent resource for new conversations.
   * </pre>
   *
   * <code>
   * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
   * </code>
   *
   * @return The parent.
   */
  java.lang.String getParent();
  /**
   *
   *
   * <pre>
   * Required. The parent resource for new conversations.
   * </pre>
   *
   * <code>
   * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
   * </code>
   *
   * @return The bytes for parent.
   */
  com.google.protobuf.ByteString getParentBytes();

  /**
   *
   *
   * <pre>
   * Configuration that applies to all conversations.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig conversation_config = 4;
   * </code>
   *
   * @return Whether the conversationConfig field is set.
   */
  boolean hasConversationConfig();
  /**
   *
   *
   * <pre>
   * Configuration that applies to all conversations.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig conversation_config = 4;
   * </code>
   *
   * @return The conversationConfig.
   */
  com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig
      getConversationConfig();
  /**
   *
   *
   * <pre>
   * Configuration that applies to all conversations.
   * </pre>
   *
   * <code>
   * .google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfig conversation_config = 4;
   * </code>
   */
  com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ConversationConfigOrBuilder
      getConversationConfigOrBuilder();

  public com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.SourceCase
      getSourceCase();

  public com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest.ObjectConfigCase
      getObjectConfigCase();
}
