UserConnection

@Serializable
data class UserConnection(val id: String, val name: String, val type: String, val revoked: Boolean, val integrations: List<GuildIntegration>)(source)

Constructors

Link copied to clipboard
constructor(id: String, name: String, type: String, revoked: Boolean, integrations: List<GuildIntegration>)

Properties

Link copied to clipboard
@SerialName(value = "id")
val id: String
Link copied to clipboard
@SerialName(value = "integrations")
val integrations: List<GuildIntegration>
Link copied to clipboard
@SerialName(value = "name")
val name: String
Link copied to clipboard
@SerialName(value = "revoked")
val revoked: Boolean
Link copied to clipboard
@SerialName(value = "type")
val type: String