com.google.apps.meet.v2.DocsDestinationOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 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/apps/meet/v2/resource.proto
// Protobuf Java Version: 3.25.4
package com.google.apps.meet.v2;
public interface DocsDestinationOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.apps.meet.v2.DocsDestination)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. The document ID for the underlying Google Docs transcript
* file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use the
* `documents.get` method of the Google Docs API
* (https://developers.google.com/docs/api/reference/rest/v1/documents/get) to
* fetch the content.
*
*
* string document = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The document.
*/
java.lang.String getDocument();
/**
*
*
*
* Output only. The document ID for the underlying Google Docs transcript
* file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use the
* `documents.get` method of the Google Docs API
* (https://developers.google.com/docs/api/reference/rest/v1/documents/get) to
* fetch the content.
*
*
* string document = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for document.
*/
com.google.protobuf.ByteString getDocumentBytes();
/**
*
*
*
* Output only. URI for the Google Docs transcript file. Use
* `https://docs.google.com/document/d/{$DocumentId}/view` to browse the
* transcript in the browser.
*
*
* string export_uri = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The exportUri.
*/
java.lang.String getExportUri();
/**
*
*
*
* Output only. URI for the Google Docs transcript file. Use
* `https://docs.google.com/document/d/{$DocumentId}/view` to browse the
* transcript in the browser.
*
*
* string export_uri = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for exportUri.
*/
com.google.protobuf.ByteString getExportUriBytes();
}