org.whispersystems.textsecure.internal.push.ProvisioningMessage Maven / Gradle / Ivy
The newest version!
package org.whispersystems.textsecure.internal.push;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ProvisioningMessage {
@JsonProperty
private String body;
public ProvisioningMessage(String body) {
this.body = body;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy