MemberDelta
class MemberDelta(val avatar: Optional<Asset?>, val username: Optional<String>, val discriminator: Optional<String>, val flags: Optional<UserFlags?>, val nickname: Optional<String?>, val boosting: Optional<Instant?>, val roles: Optional<RoleDelta>, val owner: Optional<Boolean>, val pending: Optional<Boolean>) : UserDelta
Represents the difference between two Kord Member objects. This includes everything from UserDelta.
This is intended for use with events that change things, to make logging easier - but may have other applications. All properties available on this object have the same names as the corresponding properties on the Member object.
Optionals will be Optional.Missing if there was no change - otherwise they'll contain the value from the new Member.