ClanCapitalRaidSeason

data class ClanCapitalRaidSeason(val attackLog: List<ClanCapitalRaidSeasonAttackLogEntry>, val defenseLog: List<ClanCapitalRaidSeasonDefenceLogEntry>, val state: String, val startTime: String, val endTime: String, val capitalTotalLoot: Int, val raidsCompleted: Int, val totalAttacks: Int, val enemyDistrictsDestroyed: Int, val offensiveReward: Int, val defensiveReward: Int, val members: List<ClanCapitalRaidSeasonMember>)

Represents the ClanCapitalRaidSeason model of the Clash of Clans API. The ClanCapitalRaidSeason data class stores information about an individual Clan Capital Raid season.

Constructors

Link copied to clipboard
constructor(attackLog: List<ClanCapitalRaidSeasonAttackLogEntry>, defenseLog: List<ClanCapitalRaidSeasonDefenceLogEntry>, state: String, startTime: String, endTime: String, capitalTotalLoot: Int, raidsCompleted: Int, totalAttacks: Int, enemyDistrictsDestroyed: Int, offensiveReward: Int, defensiveReward: Int, members: List<ClanCapitalRaidSeasonMember>)

Properties

Link copied to clipboard

A list of ClanCapitalRaidSeasonAttackLogEntry objects representing the attack log for the season.

Link copied to clipboard

The total amount of capital resources looted during the season.

Link copied to clipboard

A list of ClanCapitalRaidSeasonDefenceLogEntry objects representing the defense log for the season.

Link copied to clipboard

The defensive reward earned during the season.

Link copied to clipboard

The end time of the Clan Capital Raid season.

Link copied to clipboard

The total number of enemy districts destroyed during the season.

Link copied to clipboard

A list of ClanCapitalRaidSeasonMember objects representing the members participating in the season.

Link copied to clipboard

The offensive reward earned during the season.

Link copied to clipboard

The total number of raids completed during the season.

Link copied to clipboard

The start time of the Clan Capital Raid season.

Link copied to clipboard

The state of the Clan Capital Raid season.

Link copied to clipboard

The total number of attacks made during the season.