it.auties.whatsapp.model.business.BusinessLocalizableParameterValue 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.business;
import it.auties.protobuf.base.ProtobufMessage;
/**
* A model class that represents the value of a localizable parameter
*/
public sealed interface BusinessLocalizableParameterValue extends ProtobufMessage permits BusinessCurrency, BusinessDateTime {
/**
* Returns the type of parameter
*
* @return a non-null type
*/
BusinessLocalizableParameterType parameterType();
}