com.clarifai.grpc.api.ConceptMappingJobOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface ConceptMappingJobOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ConceptMappingJob)
com.google.protobuf.MessageOrBuilder {
/**
*
* The id of the knowledge graph being used for this concept mapping job
*
*
* string knowledge_graph_id = 1;
* @return The knowledgeGraphId.
*/
java.lang.String getKnowledgeGraphId();
/**
*
* The id of the knowledge graph being used for this concept mapping job
*
*
* string knowledge_graph_id = 1;
* @return The bytes for knowledgeGraphId.
*/
com.google.protobuf.ByteString
getKnowledgeGraphIdBytes();
/**
*
* The ids of the concepts being mapped
*
*
* repeated string concept_ids = 2;
* @return A list containing the conceptIds.
*/
java.util.List
getConceptIdsList();
/**
*
* The ids of the concepts being mapped
*
*
* repeated string concept_ids = 2;
* @return The count of conceptIds.
*/
int getConceptIdsCount();
/**
*
* The ids of the concepts being mapped
*
*
* repeated string concept_ids = 2;
* @param index The index of the element to return.
* @return The conceptIds at the given index.
*/
java.lang.String getConceptIds(int index);
/**
*
* The ids of the concepts being mapped
*
*
* repeated string concept_ids = 2;
* @param index The index of the value to return.
* @return The bytes of the conceptIds at the given index.
*/
com.google.protobuf.ByteString
getConceptIdsBytes(int index);
}