com.alipay.api.domain.TicketPassagerInfo 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-08-13 09:55:45
*/
public class TicketPassagerInfo extends AlipayObject {
private static final long serialVersionUID = 7491969384136143965L;
/**
* 证件号
*/
@ApiField("cert_no")
private String certNo;
/**
* 证件类型
*/
@ApiField("cert_type")
private String certType;
/**
* 手机号
*/
@ApiField("mobile_no")
private String mobileNo;
/**
* 用户姓名
*/
@ApiField("name")
private String name;
/**
* 用于标记支付宝用户在应用下的唯一标识
*/
@ApiField("open_id")
private String openId;
/**
* 门票状态
*/
@ApiField("status")
private String status;
/**
* 支付宝userId.格式:2088xxxxxx
*/
@ApiField("uid")
private String uid;
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
}
public String getMobileNo() {
return this.mobileNo;
}
public void setMobileNo(String mobileNo) {
this.mobileNo = mobileNo;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUid() {
return this.uid;
}
public void setUid(String uid) {
this.uid = uid;
}
}