- 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
67 lines
1.7 KiB
Java
67 lines
1.7 KiB
Java
package com.mbridge.msdk.out;
|
|
|
|
import com.mbridge.msdk.system.NoProGuard;
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class RewardInfo implements NoProGuard, Serializable {
|
|
private boolean isCompleteView;
|
|
private int rewardAlertStatus;
|
|
private String rewardAmount;
|
|
private String rewardName;
|
|
|
|
public int getRewardAlertStatus() {
|
|
return this.rewardAlertStatus;
|
|
}
|
|
|
|
public String getRewardAmount() {
|
|
return this.rewardAmount;
|
|
}
|
|
|
|
public String getRewardName() {
|
|
return this.rewardName;
|
|
}
|
|
|
|
public boolean isCompleteView() {
|
|
return this.isCompleteView;
|
|
}
|
|
|
|
public void setCompleteView(boolean z) {
|
|
this.isCompleteView = z;
|
|
}
|
|
|
|
public void setRewardAlertStatus(int i) {
|
|
this.rewardAlertStatus = i;
|
|
}
|
|
|
|
public void setRewardAmount(String str) {
|
|
this.rewardAmount = str;
|
|
}
|
|
|
|
public void setRewardName(String str) {
|
|
this.rewardName = str;
|
|
}
|
|
|
|
public RewardInfo(boolean z, int i) {
|
|
this.isCompleteView = z;
|
|
this.rewardAlertStatus = i;
|
|
}
|
|
|
|
public RewardInfo(boolean z, String str, String str2) {
|
|
this.isCompleteView = z;
|
|
this.rewardName = str;
|
|
this.rewardAmount = str2;
|
|
}
|
|
|
|
public RewardInfo(boolean z, String str, String str2, int i) {
|
|
this.isCompleteView = z;
|
|
this.rewardName = str;
|
|
this.rewardAmount = str2;
|
|
this.rewardAlertStatus = i;
|
|
}
|
|
|
|
public String toString() {
|
|
return "RewardInfo{isCompleteView=" + this.isCompleteView + ", rewardName='" + this.rewardName + "', rewardAmount='" + this.rewardAmount + "', rewardAlertStatus=" + this.rewardAlertStatus + '}';
|
|
}
|
|
}
|