Interface WhatsAppInteractiveMessageBuilder.SectionRowBuilder
-
- All Known Implementing Classes:
WhatsAppInteractiveMessageBuilderImpl.SectionRowBuilderImpl
- Enclosing interface:
- WhatsAppInteractiveMessageBuilder
public static interface WhatsAppInteractiveMessageBuilder.SectionRowBuilderBuilder for building a row in a section for list interactive messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WhatsAppInteractiveMessageBuilder.SectionBuilderaddRow()Add the previously configured row.WhatsAppInteractiveMessageBuilder.SectionRowBuilderdescription(String description)The user visible description of the row.WhatsAppInteractiveMessageBuilder.SectionRowBuilderid(String id)The unique identifier of the row.WhatsAppInteractiveMessageBuilder.SectionRowBuildertitle(String title)The user visible text in the row.
-
-
-
Method Detail
-
id
WhatsAppInteractiveMessageBuilder.SectionRowBuilder id(String id)
The unique identifier of the row. This will be returned by WhatsApp when the user selects this row.- Parameters:
id- the row unique identifier- See Also:
addRow()
-
title
WhatsAppInteractiveMessageBuilder.SectionRowBuilder title(String title)
The user visible text in the row.- Parameters:
title- the row content- See Also:
addRow()
-
description
WhatsAppInteractiveMessageBuilder.SectionRowBuilder description(String description)
The user visible description of the row.- Parameters:
description- the row description- See Also:
addRow()
-
addRow
WhatsAppInteractiveMessageBuilder.SectionBuilder addRow()
Add the previously configured row. If not invoked then the rest of theWhatsAppInteractiveMessageBuilder.SectionRowBuilderoperations are a noop.
-
-