it.auties.whatsapp.model.button.base.ButtonBody 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.button.base;
import it.auties.protobuf.base.ProtobufMessage;
import it.auties.whatsapp.model.info.NativeFlowInfo;
/**
* A model that represents the body of a button
*/
public sealed interface ButtonBody extends ProtobufMessage permits ButtonText, NativeFlowInfo {
/**
* Returns the type of this body
*
* @return a non-null type
*/
ButtonBodyType bodyType();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy