All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.signalservice.internal.push.GroupMismatchedDevices Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy