com.alipay.api.domain.AlipayCommerceMerchantcardTemplateQueryModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 卡模版查询
*
* @author auto create
* @since 1.0, 2024-12-12 19:25:21
*/
public class AlipayCommerceMerchantcardTemplateQueryModel extends AlipayObject {
private static final long serialVersionUID = 4638451996251399853L;
/**
* 卡ID
*/
@ApiField("card_template_id")
private String cardTemplateId;
/**
* 用于标记支付宝用户在应用下的唯一标识
*/
@ApiField("open_id")
private String openId;
/**
* 支付宝用户的userId。
*/
@ApiField("user_id")
private String userId;
public String getCardTemplateId() {
return this.cardTemplateId;
}
public void setCardTemplateId(String cardTemplateId) {
this.cardTemplateId = cardTemplateId;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy