Class RatingChange
java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.RatingChange
public class RatingChange extends CFObject
Represents a participation of user in rated contest.
-
Field Summary
Fields Modifier and Type Field Description int
contestId
String
contestName
Localized.String
handle
Codeforces user handle.int
newRating
User rating after the contest.int
oldRating
User rating before the contest.int
rank
Place of the user in the contest.int
ratingUpdateTimeSeconds
Time, when rating for the contest was update, in unix-format. -
Constructor Summary
Constructors Constructor Description RatingChange()
-
Method Summary
Methods inherited from class com.github.rami_sabbagh.codeforces.api.objects.CFObject
toString, toStringPretty
-
Field Details
-
contestId
public int contestId -
contestName
Localized. -
handle
Codeforces user handle. -
rank
public int rankPlace of the user in the contest. This field contains user rank on the moment of rating update. If afterwards rank changes (e.g. someone get disqualified), this field will not be update and will contain old rank. -
ratingUpdateTimeSeconds
public int ratingUpdateTimeSecondsTime, when rating for the contest was update, in unix-format. -
oldRating
public int oldRatingUser rating before the contest. -
newRating
public int newRatingUser rating after the contest.
-
-
Constructor Details
-
RatingChange
public RatingChange()
-