Class BlogEntry
java.lang.Object
com.github.rami_sabbagh.codeforces.api.objects.CFObject
com.github.rami_sabbagh.codeforces.api.objects.BlogEntry
public class BlogEntry extends CFObject
Represents a Codeforces blog entry, May be in either short or full version.
-
Field Summary
Fields Modifier and Type Field Description boolean
allowViewHistory
If true, you can view any specific revision of the blog entry.String
authorHandle
Author user handle.String
content
Localized.long
creationTimeSeconds
Time, when blog entry was created, in unix format.int
id
String
locale
long
modificationTimeSeconds
Time, when blog entry has been updated, in unix format.String
originalLocale
Original locale of the blog entry.int
rating
String[]
tags
String
title
Localized. -
Constructor Summary
Constructors Constructor Description BlogEntry()
-
Method Summary
Methods inherited from class com.github.rami_sabbagh.codeforces.api.objects.CFObject
toString, toStringPretty
-
Field Details
-
id
public int id -
originalLocale
Original locale of the blog entry. -
creationTimeSeconds
public long creationTimeSecondsTime, when blog entry was created, in unix format. -
authorHandle
Author user handle. -
title
Localized. -
content
Localized. Not included in short version. -
locale
-
modificationTimeSeconds
public long modificationTimeSecondsTime, when blog entry has been updated, in unix format. -
allowViewHistory
public boolean allowViewHistoryIf true, you can view any specific revision of the blog entry. -
tags
-
rating
public int rating
-
-
Constructor Details
-
BlogEntry
public BlogEntry()
-