com.google.cloud.texttospeech.v1.SynthesizeLongAudioMetadataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-texttospeech-v1 Show documentation
Show all versions of proto-google-cloud-texttospeech-v1 Show documentation
PROTO library for proto-google-cloud-texttospeech-v1
/*
* 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/cloud/texttospeech/v1/cloud_tts_lrs.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.texttospeech.v1;
public interface SynthesizeLongAudioMetadataOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.texttospeech.v1.SynthesizeLongAudioMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Time when the request was received.
*
*
* .google.protobuf.Timestamp start_time = 1;
*
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
/**
*
*
*
* Time when the request was received.
*
*
* .google.protobuf.Timestamp start_time = 1;
*
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
/**
*
*
*
* Time when the request was received.
*
*
* .google.protobuf.Timestamp start_time = 1;
*/
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder();
/**
*
*
*
* Deprecated. Do not use.
*
*
* .google.protobuf.Timestamp last_update_time = 2 [deprecated = true];
*
* @deprecated google.cloud.texttospeech.v1.SynthesizeLongAudioMetadata.last_update_time is
* deprecated. See google/cloud/texttospeech/v1/cloud_tts_lrs.proto;l=85
* @return Whether the lastUpdateTime field is set.
*/
@java.lang.Deprecated
boolean hasLastUpdateTime();
/**
*
*
*
* Deprecated. Do not use.
*
*
* .google.protobuf.Timestamp last_update_time = 2 [deprecated = true];
*
* @deprecated google.cloud.texttospeech.v1.SynthesizeLongAudioMetadata.last_update_time is
* deprecated. See google/cloud/texttospeech/v1/cloud_tts_lrs.proto;l=85
* @return The lastUpdateTime.
*/
@java.lang.Deprecated
com.google.protobuf.Timestamp getLastUpdateTime();
/**
*
*
*
* Deprecated. Do not use.
*
*
* .google.protobuf.Timestamp last_update_time = 2 [deprecated = true];
*/
@java.lang.Deprecated
com.google.protobuf.TimestampOrBuilder getLastUpdateTimeOrBuilder();
/**
*
*
*
* The progress of the most recent processing update in percentage, ie. 70.0%.
*
*
* double progress_percentage = 3;
*
* @return The progressPercentage.
*/
double getProgressPercentage();
}