Package org.javacord.api.entity.activity
Interface ActivityAssets
-
public interface ActivityAssetsThis class represents an activity asset.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<Icon>getLargeImage()Gets the large image of the asset.java.util.Optional<java.lang.String>getLargeText()Gets the large text of the asset.java.util.Optional<Icon>getSmallImage()Gets the small image of the asset.java.util.Optional<java.lang.String>getSmallText()Gets the small text of the asset.
-
-
-
Method Detail
-
getLargeImage
java.util.Optional<Icon> getLargeImage()
Gets the large image of the asset.- Returns:
- The large image of the asset.
-
getLargeText
java.util.Optional<java.lang.String> getLargeText()
Gets the large text of the asset.- Returns:
- The large text of the asset.
-
getSmallImage
java.util.Optional<Icon> getSmallImage()
Gets the small image of the asset.- Returns:
- The small image of the asset.
-
getSmallText
java.util.Optional<java.lang.String> getSmallText()
Gets the small text of the asset.- Returns:
- The small text of the asset.
-
-