- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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 + '}';
|
|
}
|
|
}
|