interface AchievementCutoffs {
    bronze?: number;
    diamond?: number;
    gold?: number;
    platinum?: number;
    silver?: number;
    total: number;
}

Properties

bronze?: number

If applicable, the score required to obtain a Bronze rank. (If null, any score is allowed; if not given, this rank is not available.)

diamond?: number

If applicable, the score required to obtain a Diamond rank. (If null, any score is allowed; if not given, this rank is not available.)

gold?: number

If applicable, the score required to obtain a Gold rank. (If null, any score is allowed; if not given, this rank is not available.)

platinum?: number

If applicable, the score required to obtain a Platinum rank. (If null, any score is allowed; if not given, this rank is not available.)

silver?: number

If applicable, the score required to obtain a Silver rank. (If null, any score is allowed; if not given, this rank is not available.)

total: number

The total amount of users with this achievement.