org.whispersystems.signalservice.internal.push.GroupMismatchedDevices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java, unofficial fork
package org.whispersystems.signalservice.internal.push;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Represents the body of a 409 response from the service during a sender key send.
*/
public class GroupMismatchedDevices {
@JsonProperty
private String uuid;
@JsonProperty
private MismatchedDevices devices;
public GroupMismatchedDevices() {}
public String getUuid() {
return uuid;
}
public MismatchedDevices getDevices() {
return devices;
}
}