Interface CelebrityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Celebrity
,Celebrity.Builder
public interface CelebrityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Textual description of additional information about the celebrity, if applicable.com.google.protobuf.ByteString
getDescriptionBytes()
Textual description of additional information about the celebrity, if applicable.String
getDisplayName()
The celebrity name.com.google.protobuf.ByteString
getDisplayNameBytes()
The celebrity name.String
getName()
The resource name of the celebrity.com.google.protobuf.ByteString
getNameBytes()
The resource name of the celebrity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The resource name of the celebrity. Have the format `video-intelligence/kg-mid` indicates a celebrity from preloaded gallery. kg-mid is the id in Google knowledge graph, which is unique for the celebrity.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The resource name of the celebrity. Have the format `video-intelligence/kg-mid` indicates a celebrity from preloaded gallery. kg-mid is the id in Google knowledge graph, which is unique for the celebrity.
string name = 1;
- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
The celebrity name.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The celebrity name.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
getDescription
String getDescription()
Textual description of additional information about the celebrity, if applicable.
string description = 3;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Textual description of additional information about the celebrity, if applicable.
string description = 3;
- Returns:
- The bytes for description.
-
-