Member

@Serializable
@SerialName(value = "member")
data class Member(val user: User, val untilDate: Instant? = null) : ChatMember

Constructors

Link copied to clipboard
constructor(user: User, untilDate: Instant? = null)

Properties

Link copied to clipboard
Link copied to clipboard
@Serializable(with = InstantSerializer::class)
val untilDate: Instant? = null
Link copied to clipboard
open override val user: User