it.auties.whatsapp.model.message.button.InteractiveMessageContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
package it.auties.whatsapp.model.message.button;
import it.auties.protobuf.base.ProtobufMessage;
import it.auties.whatsapp.model.interactive.InteractiveCollection;
import it.auties.whatsapp.model.interactive.InteractiveNativeFlow;
import it.auties.whatsapp.model.interactive.InteractiveShop;
/**
* A model class that represents a message that can be used as the content of a {@link it.auties.whatsapp.model.message.button.InteractiveMessage}
*/
public sealed interface InteractiveMessageContent extends ProtobufMessage permits InteractiveShop, InteractiveCollection, InteractiveNativeFlow {
/**
* Returns the type of this content
*
* @return a non-null type
*/
InteractiveMessageContentType contentType();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy