Skip to content
This repository has been archived by the owner on Oct 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #77 from TheFruxz/chore/dokkaUpdate
Browse files Browse the repository at this point in the history
Add GitHub Pages Docs
  • Loading branch information
TheFruxz authored Nov 23, 2021
2 parents 36c360c + 43ce4ff commit 6de593a
Show file tree
Hide file tree
Showing 3,660 changed files with 152,004 additions and 9 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 3 additions & 9 deletions .run/PRODUCE.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,14 @@
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="scriptParameters" value="test build shadowJar publishToMavenLocal dokkaHtmlMultiModule dokkaGfmMultiModule" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="test" />
<option value="build" />
<option value="shadowJar" />
<option value="publishToMavenLocal" />
<option value="dokkaHtml" />
</list>
<list />
</option>
<option name="vmOptions" value="" />
<option name="vmOptions" />
</ExternalSystemSettings>
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[buildDiscordApi](build-discord-api.md)

# buildDiscordApi

[jvm]\
fun [buildDiscordApi](build-discord-api.md)(process: DiscordApiBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)): DiscordApiBuilder
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[buildEmbed](build-embed.md)

# buildEmbed

[jvm]\
fun [buildEmbed](build-embed.md)(process: EmbedBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)): EmbedBuilder
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[buildMessage](build-message.md)

# buildMessage

[jvm]\
fun [buildMessage](build-message.md)(process: MessageBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)): MessageBuilder
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[channel](channel.md)

# channel

[jvm]\
fun DiscordApi.[channel](channel.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): Channel

fun DiscordApi.[channel](channel.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): Channel?

fun Server.[channel](channel.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerChannel

fun Server.[channel](channel.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerChannel?
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[channels](channels.md)

# channels

[jvm]\
fun DiscordApi.[channels](channels.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;Channel&gt;

fun DiscordApi.[channels](channels.md)(): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;Channel&gt;

fun Server.[channels](channels.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerChannel&gt;

fun Server.[channels](channels.md)(): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerChannel&gt;
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[connectDiscord](connect-discord.md)

# connectDiscord

[jvm]\
fun [connectDiscord](connect-discord.md)(token: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): DiscordApi
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[createCustomEmojiIfNotExists](create-custom-emoji-if-not-exists.md)

# createCustomEmojiIfNotExists

[jvm]\
fun Server.[createCustomEmojiIfNotExists](create-custom-emoji-if-not-exists.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), resource: [ByteArray](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html), process: CustomEmojiBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) = {}): KnownCustomEmoji
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[createCustomEmoji](create-custom-emoji.md)

# createCustomEmoji

[jvm]\
fun Server.[createCustomEmoji](create-custom-emoji.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), resource: [ByteArray](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html), replaceExisting: [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) = false, process: CustomEmojiBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) = {}): KnownCustomEmoji?
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[getCustomEmoji](get-custom-emoji.md)

# getCustomEmoji

[jvm]\
fun Server.[getCustomEmoji](get-custom-emoji.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), ignoreCase: [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)): KnownCustomEmoji?

fun Server.[getCustomEmoji](get-custom-emoji.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): KnownCustomEmoji?
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[getDiscordUserObjectByID](get-discord-user-object-by-i-d.md)

# getDiscordUserObjectByID

[jvm]\
fun DiscordApi.[getDiscordUserObjectByID](get-discord-user-object-by-i-d.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [DiscordUser](../de.jet.discord.user/-discord-user/index.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[getDiscordUserObjectByName](get-discord-user-object-by-name.md)

# getDiscordUserObjectByName

[jvm]\
fun DiscordApi.[getDiscordUserObjectByName](get-discord-user-object-by-name.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [DiscordUser](../de.jet.discord.user/-discord-user/index.md)?
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)

# Package de.jet.discord.extension

## Functions

| Name | Summary |
|---|---|
| [buildDiscordApi](build-discord-api.md) | [jvm]<br>fun [buildDiscordApi](build-discord-api.md)(process: DiscordApiBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)): DiscordApiBuilder |
| [buildEmbed](build-embed.md) | [jvm]<br>fun [buildEmbed](build-embed.md)(process: EmbedBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)): EmbedBuilder |
| [buildMessage](build-message.md) | [jvm]<br>fun [buildMessage](build-message.md)(process: MessageBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)): MessageBuilder |
| [channel](channel.md) | [jvm]<br>fun DiscordApi.[channel](channel.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): Channel<br>fun DiscordApi.[channel](channel.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): Channel?<br>fun Server.[channel](channel.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerChannel<br>fun Server.[channel](channel.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerChannel? |
| [channels](channels.md) | [jvm]<br>fun DiscordApi.[channels](channels.md)(): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;Channel&gt;<br>fun Server.[channels](channels.md)(): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerChannel&gt;<br>fun DiscordApi.[channels](channels.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;Channel&gt;<br>fun Server.[channels](channels.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerChannel&gt; |
| [connectDiscord](connect-discord.md) | [jvm]<br>fun [connectDiscord](connect-discord.md)(token: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): DiscordApi |
| [createCustomEmoji](create-custom-emoji.md) | [jvm]<br>fun Server.[createCustomEmoji](create-custom-emoji.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), resource: [ByteArray](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html), replaceExisting: [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) = false, process: CustomEmojiBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) = {}): KnownCustomEmoji? |
| [createCustomEmojiIfNotExists](create-custom-emoji-if-not-exists.md) | [jvm]<br>fun Server.[createCustomEmojiIfNotExists](create-custom-emoji-if-not-exists.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), resource: [ByteArray](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html), process: CustomEmojiBuilder.() -&gt; [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) = {}): KnownCustomEmoji |
| [getCustomEmoji](get-custom-emoji.md) | [jvm]<br>fun Server.[getCustomEmoji](get-custom-emoji.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): KnownCustomEmoji?<br>fun Server.[getCustomEmoji](get-custom-emoji.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), ignoreCase: [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)): KnownCustomEmoji? |
| [getDiscordUserObjectByID](get-discord-user-object-by-i-d.md) | [jvm]<br>fun DiscordApi.[getDiscordUserObjectByID](get-discord-user-object-by-i-d.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [DiscordUser](../de.jet.discord.user/-discord-user/index.md) |
| [getDiscordUserObjectByName](get-discord-user-object-by-name.md) | [jvm]<br>fun DiscordApi.[getDiscordUserObjectByName](get-discord-user-object-by-name.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [DiscordUser](../de.jet.discord.user/-discord-user/index.md)? |
| [isCustomEmojiExisting](is-custom-emoji-existing.md) | [jvm]<br>fun Server.[isCustomEmojiExisting](is-custom-emoji-existing.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)<br>fun Server.[isCustomEmojiExisting](is-custom-emoji-existing.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), ignoreCase: [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) = false): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) |
| [removeCustomEmoji](remove-custom-emoji.md) | [jvm]<br>fun Server.[removeCustomEmoji](remove-custom-emoji.md)(condition: (KnownCustomEmoji) -&gt; [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html))<br>fun Server.[removeCustomEmoji](remove-custom-emoji.md)(byId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html))<br>fun Server.[removeCustomEmoji](remove-custom-emoji.md)(byName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)) |
| [server](server.md) | [jvm]<br>fun DiscordApi.[server](server.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): Server<br>fun DiscordApi.[server](server.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): Server? |
| [serverChannel](server-channel.md) | [jvm]<br>fun DiscordApi.[serverChannel](server-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), channelId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerChannel<br>fun DiscordApi.[serverChannel](server-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerChannel? |
| [serverChannels](server-channels.md) | [jvm]<br>fun DiscordApi.[serverChannels](server-channels.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerChannel&gt; |
| [servers](servers.md) | [jvm]<br>fun DiscordApi.[servers](servers.md)(): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;Server&gt;<br>fun DiscordApi.[servers](servers.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;Server&gt; |
| [serverTextChannel](server-text-channel.md) | [jvm]<br>fun DiscordApi.[serverTextChannel](server-text-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), channelId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerTextChannel<br>fun DiscordApi.[serverTextChannel](server-text-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerTextChannel? |
| [serverTextChannels](server-text-channels.md) | [jvm]<br>fun DiscordApi.[serverTextChannels](server-text-channels.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerTextChannel&gt; |
| [textChannel](text-channel.md) | [jvm]<br>fun DiscordApi.[textChannel](text-channel.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): TextChannel<br>fun DiscordApi.[textChannel](text-channel.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): TextChannel?<br>fun Server.[textChannel](text-channel.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerTextChannel<br>fun Server.[textChannel](text-channel.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerTextChannel? |
| [textChannels](text-channels.md) | [jvm]<br>fun DiscordApi.[textChannels](text-channels.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;TextChannel&gt;<br>fun DiscordApi.[textChannels](text-channels.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;TextChannel&gt;<br>fun Server.[textChannels](text-channels.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerTextChannel&gt;<br>fun Server.[textChannels](text-channels.md)(name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerTextChannel&gt; |
| [user](user.md) | [jvm]<br>fun DiscordApi.[user](user.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): User |
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[isCustomEmojiExisting](is-custom-emoji-existing.md)

# isCustomEmojiExisting

[jvm]\
fun Server.[isCustomEmojiExisting](is-custom-emoji-existing.md)(emojiName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html), ignoreCase: [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) = false): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)

fun Server.[isCustomEmojiExisting](is-custom-emoji-existing.md)(id: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[removeCustomEmoji](remove-custom-emoji.md)

# removeCustomEmoji

[jvm]\
fun Server.[removeCustomEmoji](remove-custom-emoji.md)(condition: (KnownCustomEmoji) -&gt; [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html))

fun Server.[removeCustomEmoji](remove-custom-emoji.md)(byName: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html))

fun Server.[removeCustomEmoji](remove-custom-emoji.md)(byId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html))
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[serverChannel](server-channel.md)

# serverChannel

[jvm]\
fun DiscordApi.[serverChannel](server-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), channelId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerChannel

fun DiscordApi.[serverChannel](server-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerChannel?
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[serverChannels](server-channels.md)

# serverChannels

[jvm]\
fun DiscordApi.[serverChannels](server-channels.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerChannel&gt;
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[serverTextChannel](server-text-channel.md)

# serverTextChannel

[jvm]\
fun DiscordApi.[serverTextChannel](server-text-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), channelId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): ServerTextChannel

fun DiscordApi.[serverTextChannel](server-text-channel.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html), name: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)): ServerTextChannel?
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//[JET-Discord](../../index.md)/[de.jet.discord.extension](index.md)/[serverTextChannels](server-text-channels.md)

# serverTextChannels

[jvm]\
fun DiscordApi.[serverTextChannels](server-text-channels.md)(serverId: [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)&lt;ServerTextChannel&gt;
Loading

0 comments on commit 6de593a

Please sign in to comment.