com.alipay.api.domain.AlipayDataDataserviceDspcreativeUploadModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 外部DSP创意创建
*
* @author auto create
* @since 1.0, 2024-05-14 14:17:49
*/
public class AlipayDataDataserviceDspcreativeUploadModel extends AlipayObject {
private static final long serialVersionUID = 2695283327831349126L;
/**
* 验证码
*/
@ApiField("biz_token")
private String bizToken;
/**
* 创意列表
*/
@ApiListField("creatives")
@ApiField("dsp_creative")
private List creatives;
/**
* 外部dspId
*/
@ApiField("dsp_id")
private String dspId;
public String getBizToken() {
return this.bizToken;
}
public void setBizToken(String bizToken) {
this.bizToken = bizToken;
}
public List getCreatives() {
return this.creatives;
}
public void setCreatives(List creatives) {
this.creatives = creatives;
}
public String getDspId() {
return this.dspId;
}
public void setDspId(String dspId) {
this.dspId = dspId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy