it.auties.whatsapp.api.TextPreviewSetting 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.api;
/**
* The constants of this enumerated type describe the various types of text preview that can be
* used
*/
public enum TextPreviewSetting {
/**
* Link previews will be generated. If a message contains an url without a schema(for example
* wikipedia.com), the message will be autocorrected to include it and a preview will be
* generated
*/
ENABLED_WITH_INFERENCE,
/**
* Link previews will be generated. No inference will be used.
*/
ENABLED,
/**
* Link previews will not be generated
*/
DISABLED
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy