- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
45 lines
940 B
Java
45 lines
940 B
Java
package com.mbridge.msdk.out;
|
|
|
|
import com.mbridge.msdk.foundation.entity.CampaignEx;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class Frame {
|
|
private List<CampaignEx> campaigns;
|
|
private String parentSessionId;
|
|
private String sessionId;
|
|
private int template;
|
|
|
|
public List<CampaignEx> getCampaigns() {
|
|
return this.campaigns;
|
|
}
|
|
|
|
public String getParentSessionId() {
|
|
return this.parentSessionId;
|
|
}
|
|
|
|
public String getSessionId() {
|
|
return this.sessionId;
|
|
}
|
|
|
|
public int getTemplate() {
|
|
return this.template;
|
|
}
|
|
|
|
public void setCampaigns(List<CampaignEx> list) {
|
|
this.campaigns = list;
|
|
}
|
|
|
|
public void setParentSessionId(String str) {
|
|
this.parentSessionId = str;
|
|
}
|
|
|
|
public void setSessionId(String str) {
|
|
this.sessionId = str;
|
|
}
|
|
|
|
public void setTemplate(int i) {
|
|
this.template = i;
|
|
}
|
|
}
|