- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
23 lines
506 B
Java
23 lines
506 B
Java
package com.amazonaws;
|
|
|
|
import com.applovin.impl.sdk.utils.JsonUtils;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ResponseMetadata {
|
|
public final Map metadata;
|
|
|
|
public ResponseMetadata(Map map) {
|
|
this.metadata = map;
|
|
}
|
|
|
|
public String getRequestId() {
|
|
return (String) this.metadata.get("AWS_REQUEST_ID");
|
|
}
|
|
|
|
public String toString() {
|
|
Map map = this.metadata;
|
|
return map == null ? JsonUtils.EMPTY_JSON : map.toString();
|
|
}
|
|
}
|