Interface Intent.Message.CardOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Intent.Message.Card,Intent.Message.Card.Builder
- Enclosing class:
- Intent.Message
public static interface Intent.Message.CardOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Intent.Message.Card.ButtongetButtons(int index)Optional.intgetButtonsCount()Optional.List<Intent.Message.Card.Button>getButtonsList()Optional.Intent.Message.Card.ButtonOrBuildergetButtonsOrBuilder(int index)Optional.List<? extends Intent.Message.Card.ButtonOrBuilder>getButtonsOrBuilderList()Optional.StringgetImageUri()Optional.com.google.protobuf.ByteStringgetImageUriBytes()Optional.StringgetSubtitle()Optional.com.google.protobuf.ByteStringgetSubtitleBytes()Optional.StringgetTitle()Optional.com.google.protobuf.ByteStringgetTitleBytes()Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTitle
String getTitle()
Optional. The title of the card.
string title = 1;- Returns:
- The title.
-
getTitleBytes
com.google.protobuf.ByteString getTitleBytes()
Optional. The title of the card.
string title = 1;- Returns:
- The bytes for title.
-
getSubtitle
String getSubtitle()
Optional. The subtitle of the card.
string subtitle = 2;- Returns:
- The subtitle.
-
getSubtitleBytes
com.google.protobuf.ByteString getSubtitleBytes()
Optional. The subtitle of the card.
string subtitle = 2;- Returns:
- The bytes for subtitle.
-
getImageUri
String getImageUri()
Optional. The public URI to an image file for the card.
string image_uri = 3;- Returns:
- The imageUri.
-
getImageUriBytes
com.google.protobuf.ByteString getImageUriBytes()
Optional. The public URI to an image file for the card.
string image_uri = 3;- Returns:
- The bytes for imageUri.
-
getButtonsList
List<Intent.Message.Card.Button> getButtonsList()
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2beta1.Intent.Message.Card.Button buttons = 4;
-
getButtons
Intent.Message.Card.Button getButtons(int index)
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2beta1.Intent.Message.Card.Button buttons = 4;
-
getButtonsCount
int getButtonsCount()
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2beta1.Intent.Message.Card.Button buttons = 4;
-
getButtonsOrBuilderList
List<? extends Intent.Message.Card.ButtonOrBuilder> getButtonsOrBuilderList()
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2beta1.Intent.Message.Card.Button buttons = 4;
-
getButtonsOrBuilder
Intent.Message.Card.ButtonOrBuilder getButtonsOrBuilder(int index)
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2beta1.Intent.Message.Card.Button buttons = 4;
-
-