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

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

package com.alipay.api.domain;

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

/**
 * 参与者表单
 *
 * @author auto create
 * @since 1.0, 2023-06-12 10:00:45
 */
public class ParticipantPartyForm extends AlipayObject {

	private static final long serialVersionUID = 5438214414645254852L;

	/**
	 * 参与者的业务身份标识
	 */
	@ApiField("identity")
	private String identity;

	/**
	 * ALIPAY_OPEN_ID代表identity为支付宝开放用户ID;ALIPAY_LOGON_ID代表identity为支付宝用户登录号;
	 */
	@ApiField("identity_type")
	private String identityType;

	/**
	 * 用户姓名,在identity_type为ALIPAY_LOGON_ID时必填
	 */
	@ApiField("name")
	private String name;

	public String getIdentity() {
		return this.identity;
	}
	public void setIdentity(String identity) {
		this.identity = identity;
	}

	public String getIdentityType() {
		return this.identityType;
	}
	public void setIdentityType(String identityType) {
		this.identityType = identityType;
	}

	public String getName() {
		return this.name;
	}
	public void setName(String name) {
		this.name = name;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy