All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.firebaseml.v2beta.model.GoogleCloudAiplatformV1beta1Segment Maven / Gradle / Ivy

/*
 * 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
 *
 * http://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.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.firebaseml.v2beta.model;

/**
 * Segment of the content.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Firebase ML API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class GoogleCloudAiplatformV1beta1Segment extends com.google.api.client.json.GenericJson { /** * Output only. End index in the given Part, measured in bytes. Offset from the start of the Part, * exclusive, starting at zero. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer endIndex; /** * Output only. The index of a Part object within its parent Content object. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer partIndex; /** * Output only. Start index in the given Part, measured in bytes. Offset from the start of the * Part, inclusive, starting at zero. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer startIndex; /** * Output only. The text corresponding to the segment from the response. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String text; /** * Output only. End index in the given Part, measured in bytes. Offset from the start of the Part, * exclusive, starting at zero. * @return value or {@code null} for none */ public java.lang.Integer getEndIndex() { return endIndex; } /** * Output only. End index in the given Part, measured in bytes. Offset from the start of the Part, * exclusive, starting at zero. * @param endIndex endIndex or {@code null} for none */ public GoogleCloudAiplatformV1beta1Segment setEndIndex(java.lang.Integer endIndex) { this.endIndex = endIndex; return this; } /** * Output only. The index of a Part object within its parent Content object. * @return value or {@code null} for none */ public java.lang.Integer getPartIndex() { return partIndex; } /** * Output only. The index of a Part object within its parent Content object. * @param partIndex partIndex or {@code null} for none */ public GoogleCloudAiplatformV1beta1Segment setPartIndex(java.lang.Integer partIndex) { this.partIndex = partIndex; return this; } /** * Output only. Start index in the given Part, measured in bytes. Offset from the start of the * Part, inclusive, starting at zero. * @return value or {@code null} for none */ public java.lang.Integer getStartIndex() { return startIndex; } /** * Output only. Start index in the given Part, measured in bytes. Offset from the start of the * Part, inclusive, starting at zero. * @param startIndex startIndex or {@code null} for none */ public GoogleCloudAiplatformV1beta1Segment setStartIndex(java.lang.Integer startIndex) { this.startIndex = startIndex; return this; } /** * Output only. The text corresponding to the segment from the response. * @return value or {@code null} for none */ public java.lang.String getText() { return text; } /** * Output only. The text corresponding to the segment from the response. * @param text text or {@code null} for none */ public GoogleCloudAiplatformV1beta1Segment setText(java.lang.String text) { this.text = text; return this; } @Override public GoogleCloudAiplatformV1beta1Segment set(String fieldName, Object value) { return (GoogleCloudAiplatformV1beta1Segment) super.set(fieldName, value); } @Override public GoogleCloudAiplatformV1beta1Segment clone() { return (GoogleCloudAiplatformV1beta1Segment) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy