Package com.google.cloud.dialogflow.v2
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.Button
getButtons(int index)
Optional.int
getButtonsCount()
Optional.List<Intent.Message.Card.Button>
getButtonsList()
Optional.Intent.Message.Card.ButtonOrBuilder
getButtonsOrBuilder(int index)
Optional.List<? extends Intent.Message.Card.ButtonOrBuilder>
getButtonsOrBuilderList()
Optional.String
getImageUri()
Optional.com.google.protobuf.ByteString
getImageUriBytes()
Optional.String
getSubtitle()
Optional.com.google.protobuf.ByteString
getSubtitleBytes()
Optional.String
getTitle()
Optional.com.google.protobuf.ByteString
getTitleBytes()
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 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The title.
-
getTitleBytes
com.google.protobuf.ByteString getTitleBytes()
Optional. The title of the card.
string title = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for title.
-
getSubtitle
String getSubtitle()
Optional. The subtitle of the card.
string subtitle = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The subtitle.
-
getSubtitleBytes
com.google.protobuf.ByteString getSubtitleBytes()
Optional. The subtitle of the card.
string subtitle = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for subtitle.
-
getImageUri
String getImageUri()
Optional. The public URI to an image file for the card.
string image_uri = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The imageUri.
-
getImageUriBytes
com.google.protobuf.ByteString getImageUriBytes()
Optional. The public URI to an image file for the card.
string image_uri = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for imageUri.
-
getButtonsList
List<Intent.Message.Card.Button> getButtonsList()
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2.Intent.Message.Card.Button buttons = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getButtons
Intent.Message.Card.Button getButtons(int index)
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2.Intent.Message.Card.Button buttons = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getButtonsCount
int getButtonsCount()
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2.Intent.Message.Card.Button buttons = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getButtonsOrBuilderList
List<? extends Intent.Message.Card.ButtonOrBuilder> getButtonsOrBuilderList()
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2.Intent.Message.Card.Button buttons = 4 [(.google.api.field_behavior) = OPTIONAL];
-
getButtonsOrBuilder
Intent.Message.Card.ButtonOrBuilder getButtonsOrBuilder(int index)
Optional. The collection of card buttons.
repeated .google.cloud.dialogflow.v2.Intent.Message.Card.Button buttons = 4 [(.google.api.field_behavior) = OPTIONAL];
-
-