commonMain.json.request.SubscriptionRequests.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-rest Show documentation
Show all versions of kord-rest Show documentation
Idiomatic Kotlin Wrapper for The Discord API
The newest version!
package dev.kord.rest.json.request
import dev.kord.common.entity.Snowflake
import dev.kord.rest.route.Position
public data class SkuSubscriptionsListRequest(
val position: Position.BeforeOrAfter? = null,
val limit: Int? = null,
val userId: Snowflake? = null,
)