com.alipay.api.domain.AlipayCommerceCityfacilitatorScriptQueryModel 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
alipay-sdk project for Spring Project
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, 2016-10-26 18:05:20
*/
public class AlipayCommerceCityfacilitatorScriptQueryModel extends AlipayObject {
private static final long serialVersionUID = 6573556974612832587L;
/**
* 卡类型,智能卡中心的内部编码规则
*/
@ApiField("card_type")
private String cardType;
/**
* 脚本类型,目前支持两种
readCardType:判定卡是什么城市的交通卡
readCardInfo:读取卡中的余额等信息
*/
@ApiField("script_type")
private String scriptType;
public String getCardType() {
return this.cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getScriptType() {
return this.scriptType;
}
public void setScriptType(String scriptType) {
this.scriptType = scriptType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy