mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 06:35:40 +00:00

1) Refactored MMS layer to use abstracted types. 2) Added support for retrieving attachment IDs.
19 lines
296 B
Java
19 lines
296 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
import java.util.List;
|
|
|
|
public class PushMessageResponse {
|
|
private List<String> success;
|
|
private List<String> failure;
|
|
|
|
public List<String> getSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public List<String> getFailure() {
|
|
return failure;
|
|
}
|
|
|
|
|
|
}
|