ProgramGamificationProfile

data class ProgramGamificationProfile(id: String, nickname: String, points: Int, pointsToNextBadge: Int, previousBadge: Badge?, nextBadge: Badge?, currentBadge: Badge?, newBadges: List<Badge>?, rank: Int, totalPlayers: Int, totalPoints: Int, newPoints: Int)

Properties

currentBadge
Link copied to clipboard
@SerializedName(value = current_badge)
val currentBadge: Badge?
id
Link copied to clipboard
@SerializedName(value = id)
val id: String
newBadges
Link copied to clipboard
@SerializedName(value = new_badges)
val newBadges: List<Badge>?
newPoints
Link copied to clipboard
@SerializedName(value = new_points)
val newPoints: Int
nextBadge
Link copied to clipboard
@SerializedName(value = next_badge)
val nextBadge: Badge?
nickname
Link copied to clipboard
@SerializedName(value = nickname)
val nickname: String
points
Link copied to clipboard
@SerializedName(value = points)
val points: Int
pointsToNextBadge
Link copied to clipboard
@SerializedName(value = points_to_next_badge)
val pointsToNextBadge: Int
previousBadge
Link copied to clipboard
@SerializedName(value = previous_badge)
val previousBadge: Badge?
rank
Link copied to clipboard
@SerializedName(value = rank)
val rank: Int
totalPlayers
Link copied to clipboard
@SerializedName(value = total_players)
val totalPlayers: Int
totalPoints
Link copied to clipboard
@SerializedName(value = total_points)
val totalPoints: Int