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

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

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, 2020-09-21 17:21:30
 */
public class AuthFieldResponse extends AlipayObject {

	private static final long serialVersionUID = 3617935388664833345L;

	/**
	 * 用户信息申请记录列表
	 */
	@ApiListField("records")
	@ApiField("auth_field_d_t_o")
	private List records;

	public List getRecords() {
		return this.records;
	}
	public void setRecords(List records) {
		this.records = records;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy