
com.alipay.api.domain.KoubeiMarketingCampaignAssetDetailQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询资产的详情信息
*
* @author auto create
* @since 1.0, 2017-08-08 19:56:04
*/
public class KoubeiMarketingCampaignAssetDetailQueryModel extends AlipayObject {
private static final long serialVersionUID = 7885178665191532172L;
/**
* 用户资产id,配合《用户口碑优惠资产查询接口》使用,返回券资产信息列表中的asset_id则为传递的入参值。
*/
@ApiField("asset_id")
private String assetId;
/**
* 资产类型(VOUCHER:券资产) 配合《用户口碑优惠资产查询接口》使用,返回券资产详情信息,则对应VOUCHER类型
*/
@ApiField("asset_type")
private String assetType;
public String getAssetId() {
return this.assetId;
}
public void setAssetId(String assetId) {
this.assetId = assetId;
}
public String getAssetType() {
return this.assetType;
}
public void setAssetType(String assetType) {
this.assetType = assetType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy