-
- All Implemented Interfaces:
-
java.io.Serializable
public class VersionHistoryItem implements Serializable
Legacy version history item data representation. See: https://github.com/apptentive/apptentive-android/blob/master/apptentive/src/main/java/com/apptentive/android/sdk/storage/VersionHistoryItem.java NOTE: THIS CLASS CAN'T BE RENAMED, MODIFIED, OR MOVED TO ANOTHER PACKAGE - OTHERWISE, JAVA SERIALIZABLE MECHANISM BREAKS!!!
-
-
Field Summary
Fields Modifier and Type Field Description private doubletimestampprivate intversionCodeprivate StringversionName
-
Constructor Summary
Constructors Constructor Description VersionHistoryItem(double timestamp, int versionCode, String versionName)
-
Method Summary
Modifier and Type Method Description doublegetTimestamp()intgetVersionCode()voidsetVersionCode(int versionCode)StringgetVersionName()voidsetVersionName(String versionName)-
-
Constructor Detail
-
VersionHistoryItem
VersionHistoryItem(double timestamp, int versionCode, String versionName)
-
-
Method Detail
-
getTimestamp
double getTimestamp()
-
getVersionCode
int getVersionCode()
-
setVersionCode
void setVersionCode(int versionCode)
-
getVersionName
String getVersionName()
-
setVersionName
void setVersionName(String versionName)
-
-
-
-