Interface EmbedFooter
-
public interface EmbedFooterThis interface represents an embed footer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<java.net.URL>getIconUrl()Gets the url of the footer icon.java.util.Optional<java.net.URL>getProxyIconUrl()Gets the proxy url of the footer icon.java.util.Optional<java.lang.String>getText()Gets the footer text.
-
-
-
Method Detail
-
getText
java.util.Optional<java.lang.String> getText()
Gets the footer text.- Returns:
- The text of the footer.
-
getIconUrl
java.util.Optional<java.net.URL> getIconUrl()
Gets the url of the footer icon.- Returns:
- The url of the footer icon.
-
getProxyIconUrl
java.util.Optional<java.net.URL> getProxyIconUrl()
Gets the proxy url of the footer icon.- Returns:
- The proxy url of the footer icon.
-
-