
com.alipay.api.domain.TemplateOpenCardConfDTO Maven / Gradle / Ivy
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;
/**
* 模板开卡配置
*
* @author auto create
* @since 1.0, 2023-07-03 13:55:39
*/
public class TemplateOpenCardConfDTO extends AlipayObject {
private static final long serialVersionUID = 3118163883696626731L;
/**
* 领卡权益信息
*/
@ApiListField("card_rights")
@ApiField("template_rights_content_d_t_o")
private List cardRights;
/**
* 配置,预留字段,暂时不用
*/
@ApiField("conf")
private String conf;
/**
* 开卡渠道类型
*/
@ApiField("open_card_source_type")
private String openCardSourceType;
/**
* 开卡连接,必须http、https开头
*/
@ApiField("open_card_url")
private String openCardUrl;
/**
* 渠道APPID,提供领卡页面的服务提供方
*/
@ApiField("source_app_id")
private String sourceAppId;
public List getCardRights() {
return this.cardRights;
}
public void setCardRights(List cardRights) {
this.cardRights = cardRights;
}
public String getConf() {
return this.conf;
}
public void setConf(String conf) {
this.conf = conf;
}
public String getOpenCardSourceType() {
return this.openCardSourceType;
}
public void setOpenCardSourceType(String openCardSourceType) {
this.openCardSourceType = openCardSourceType;
}
public String getOpenCardUrl() {
return this.openCardUrl;
}
public void setOpenCardUrl(String openCardUrl) {
this.openCardUrl = openCardUrl;
}
public String getSourceAppId() {
return this.sourceAppId;
}
public void setSourceAppId(String sourceAppId) {
this.sourceAppId = sourceAppId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy