- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
249 B
Java
15 lines
249 B
Java
package com.ea.nimble;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface ISynergyResponse {
|
|
Exception getError();
|
|
|
|
IHttpResponse getHttpResponse();
|
|
|
|
Map<String, Object> getJsonData();
|
|
|
|
boolean isCompleted();
|
|
}
|