org.whispersystems.signalservice.internal.push.SendMessageResponse 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;
public class SendMessageResponse {
@JsonProperty
private boolean needsSync;
private boolean sentUnidentfied;
public SendMessageResponse() {}
public SendMessageResponse(boolean needsSync, boolean sentUnidentified) {
this.needsSync = needsSync;
this.sentUnidentfied = sentUnidentified;
}
public boolean getNeedsSync() {
return needsSync;
}
public boolean sentUnidentified() {
return sentUnidentfied;
}
public void setSentUnidentfied(boolean value) {
this.sentUnidentfied = value;
}
}