All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.IotVspOrgUserWithVidAddUserInfoRequest Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * vid长度扩展到64位
 *
 * @author auto create
 * @since 1.0, 2024-05-21 10:59:35
 */
public class IotVspOrgUserWithVidAddUserInfoRequest extends AlipayObject {

	private static final long serialVersionUID = 8178355495518449552L;

	/**
	 * 姓名
	 */
	@ApiField("cert_name")
	private String certName;

	/**
	 * 证件号码
	 */
	@ApiField("cert_no")
	private String certNo;

	/**
	 * 证件类型,枚举支持:IDENTITY_CARD身份证,PASS_PORT护照,STU_NUM学生学号,COMPANY_NUM工号,TAIWAN_CARD台胞证,HK_MC_CARD港澳证件
	 */
	@ApiField("cert_type")
	private String certType;

	/**
	 * 扩展信息,ISV自定义,如无可为空
	 */
	@ApiField("ext")
	private String ext;

	/**
	 * 手机号码
	 */
	@ApiField("phone")
	private String phone;

	/**
	 * isv自定义的用户唯一标识
	 */
	@ApiField("vid")
	private String vid;

	public String getCertName() {
		return this.certName;
	}
	public void setCertName(String certName) {
		this.certName = certName;
	}

	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 getExt() {
		return this.ext;
	}
	public void setExt(String ext) {
		this.ext = ext;
	}

	public String getPhone() {
		return this.phone;
	}
	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getVid() {
		return this.vid;
	}
	public void setVid(String vid) {
		this.vid = vid;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy