com.alipay.api.domain.AlipayUserCertifyActionApplyModel 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, 2022-11-08 15:20:46
*/
public class AlipayUserCertifyActionApplyModel extends AlipayObject {
private static final long serialVersionUID = 6435827283815499831L;
/**
* 表示申请认证信息的业务类型
*/
@ApiField("biz_type")
private String bizType;
/**
* 商户和支付宝交互时,用于代表申请认证信息的商户ID
*/
@ApiField("partner_id")
private String partnerId;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getPartnerId() {
return this.partnerId;
}
public void setPartnerId(String partnerId) {
this.partnerId = partnerId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy