com.clarifai.grpc.api.ConceptCountOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface ConceptCountOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ConceptCount)
com.google.protobuf.MessageOrBuilder {
/**
*
* The concept's unique id.
*
*
* string id = 1;
* @return The id.
*/
java.lang.String getId();
/**
*
* The concept's unique id.
*
*
* string id = 1;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* The name of the concept.
*
*
* string name = 2;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the concept.
*
*
* string name = 2;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The total count for concepts labeled for all asset statues (processing, to_process, processed, error)
*
*
* .clarifai.api.ConceptTypeCount concept_type_count = 3;
* @return Whether the conceptTypeCount field is set.
*/
boolean hasConceptTypeCount();
/**
*
* The total count for concepts labeled for all asset statues (processing, to_process, processed, error)
*
*
* .clarifai.api.ConceptTypeCount concept_type_count = 3;
* @return The conceptTypeCount.
*/
com.clarifai.grpc.api.ConceptTypeCount getConceptTypeCount();
/**
*
* The total count for concepts labeled for all asset statues (processing, to_process, processed, error)
*
*
* .clarifai.api.ConceptTypeCount concept_type_count = 3;
*/
com.clarifai.grpc.api.ConceptTypeCountOrBuilder getConceptTypeCountOrBuilder();
/**
*
* The detail count for different assets status
*
*
* .clarifai.api.DetailConceptCount detail_concept_count = 4;
* @return Whether the detailConceptCount field is set.
*/
boolean hasDetailConceptCount();
/**
*
* The detail count for different assets status
*
*
* .clarifai.api.DetailConceptCount detail_concept_count = 4;
* @return The detailConceptCount.
*/
com.clarifai.grpc.api.DetailConceptCount getDetailConceptCount();
/**
*
* The detail count for different assets status
*
*
* .clarifai.api.DetailConceptCount detail_concept_count = 4;
*/
com.clarifai.grpc.api.DetailConceptCountOrBuilder getDetailConceptCountOrBuilder();
}