io.castle.client.model.CastleUserDevices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castle-java Show documentation
Show all versions of castle-java Show documentation
Castle adds real-time monitoring of your authentication stack, instantly notifying you and your users
on potential account hijacks.
package io.castle.client.model;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class CastleUserDevices {
private int totalCount;
@SerializedName("data")
private List devices;
public int getTotalCount() {
return totalCount;
}
public List getDevices() {
return devices;
}
public void setDevices(List devices) {
this.devices = devices;
this.totalCount = devices != null ? devices.size() : 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy