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

com.alipay.api.domain.UserDetailInfo 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.39.218.ALL
Show newest version
package com.alipay.api.domain;

import java.util.List;

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

/**
 * 商业订单用户信息
 *
 * @author auto create
 * @since 1.0, 2019-08-17 17:45:10
 */
public class UserDetailInfo extends AlipayObject {

	private static final long serialVersionUID = 3642282957789327329L;

	/**
	 * 支付宝用户ID
	 */
	@ApiField("alipay_user_id")
	private String alipayUserId;

	/**
	 * 用户其他详细信息列表,比如商户或者其他平台的信息。
	 */
	@ApiListField("ext_profile_list")
	@ApiField("user_profile_detail")
	private List extProfileList;

	public String getAlipayUserId() {
		return this.alipayUserId;
	}
	public void setAlipayUserId(String alipayUserId) {
		this.alipayUserId = alipayUserId;
	}

	public List getExtProfileList() {
		return this.extProfileList;
	}
	public void setExtProfileList(List extProfileList) {
		this.extProfileList = extProfileList;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy