Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public enum DeviceRegistration {
SECONDARY
}

private String appVersion;
private List<Challenge> challenges;
private String clientDeviceToken;
private Integer deviceHeight;
Expand Down Expand Up @@ -56,4 +57,22 @@ public final Authentication withUserId(String newUserId) {
this.setUserId(newUserId);
return this;
}

/**
* Returns the version of the application.
*
* @return the application version as a {@link String}, or {@code null} if not set
*/
public String getAppVersion() {
return appVersion;
}

/**
* Sets the version of the application.
*
* @param appVersion the application version to set
*/
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}
Comment thread
ndasari2 marked this conversation as resolved.
Outdated
}