package com.weikou.beibeivideo.entity.ad;
|
|
import com.bytedance.sdk.openadsdk.TTNativeExpressAd;
|
import com.huawei.hms.ads.nativead.NativeAd;
|
import com.huawei.hms.ads.nativead.NativeView;
|
import com.qq.e.ads.nativ.NativeExpressADView;
|
import com.qq.e.ads.nativ.NativeUnifiedADData;
|
|
//信息流原生广告容器
|
public class ExpressAdContainer {
|
|
TTNativeExpressAd csj;
|
NativeExpressADView gdt;//旧版广点通
|
NativeUnifiedADData gdt2Unfied;//2.0广点通自渲染
|
NativeView hwView; // 华为广告视图
|
NativeAd hwad; // 华为广告
|
|
public NativeUnifiedADData getGdt2Unfied() {
|
return gdt2Unfied;
|
}
|
|
public void setGdt2Unfied(NativeUnifiedADData gdt2Unfied) {
|
this.gdt2Unfied = gdt2Unfied;
|
}
|
|
public ExpressAdContainer() {
|
}
|
|
public ExpressAdContainer(TTNativeExpressAd csj) {
|
this.csj = csj;
|
}
|
|
public ExpressAdContainer(NativeExpressADView gdt) {
|
this.gdt = gdt;
|
}
|
|
public ExpressAdContainer(NativeUnifiedADData gdt2Unfied) {
|
this.gdt2Unfied = gdt2Unfied;
|
}
|
|
public ExpressAdContainer(NativeView hwView) {
|
this.hwView = hwView;
|
}
|
|
|
public TTNativeExpressAd getCsj() {
|
return csj;
|
}
|
|
public void setCsj(TTNativeExpressAd csj) {
|
this.csj = csj;
|
}
|
|
public NativeExpressADView getGdt() {
|
return gdt;
|
}
|
|
public void setGdt(NativeExpressADView gdt) {
|
this.gdt = gdt;
|
}
|
|
public NativeView getHwView() {
|
return hwView;
|
}
|
|
public void setHwView(NativeView hwView) {
|
this.hwView = hwView;
|
}
|
|
public NativeAd getHwad() {
|
return hwad;
|
}
|
|
public void setHwad(NativeAd hwad) {
|
this.hwad = hwad;
|
}
|
}
|