55 lines
1.1 KiB
Java
55 lines
1.1 KiB
Java
|
package com.huawei.hms.adapter;
|
||
|
|
||
|
import android.app.PendingIntent;
|
||
|
import android.content.Intent;
|
||
|
import com.huawei.hms.core.aidl.IMessageEntity;
|
||
|
import com.huawei.hms.core.aidl.annotation.Packed;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class CoreBaseResponse implements IMessageEntity {
|
||
|
|
||
|
@Packed
|
||
|
public Intent intent;
|
||
|
|
||
|
@Packed
|
||
|
private String jsonBody;
|
||
|
|
||
|
@Packed
|
||
|
private String jsonHeader;
|
||
|
|
||
|
@Packed
|
||
|
public PendingIntent pendingIntent;
|
||
|
|
||
|
public void setPendingIntent(PendingIntent pendingIntent) {
|
||
|
this.pendingIntent = pendingIntent;
|
||
|
}
|
||
|
|
||
|
public void setJsonHeader(String str) {
|
||
|
this.jsonHeader = str;
|
||
|
}
|
||
|
|
||
|
public void setJsonBody(String str) {
|
||
|
this.jsonBody = str;
|
||
|
}
|
||
|
|
||
|
public void setIntent(Intent intent) {
|
||
|
this.intent = intent;
|
||
|
}
|
||
|
|
||
|
public PendingIntent getPendingIntent() {
|
||
|
return this.pendingIntent;
|
||
|
}
|
||
|
|
||
|
public String getJsonHeader() {
|
||
|
return this.jsonHeader;
|
||
|
}
|
||
|
|
||
|
public String getJsonBody() {
|
||
|
return this.jsonBody;
|
||
|
}
|
||
|
|
||
|
public Intent getIntent() {
|
||
|
return this.intent;
|
||
|
}
|
||
|
}
|