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 intcontestIdStringcontestNameLocalized.StringhandleCodeforces user handle.intnewRatingUser rating after the contest.intoldRatingUser rating before the contest.intrankPlace of the user in the contest.intratingUpdateTimeSecondsTime, 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()
-