com.alipay.api.response.ZhimaCustomerJobworthAuthenticationQueryResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.customer.jobworth.authentication.query response.
*
* @author auto create
* @since 1.0, 2024-03-28 00:22:03
*/
public class ZhimaCustomerJobworthAuthenticationQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8524955125762177185L;
/**
* SUCCESS代表可信,FAILED代表不可信,WAITING_VERIFY代表未知需要等待结果
*/
@ApiField("identity_result")
private String identityResult;
/**
* 身份认证查询结果页面的小程序链接,有芝麻提供,用户在端内可直接访问
*/
@ApiField("identity_result_skip_url")
private String identityResultSkipUrl;
/**
* 蚂蚁统一会员ID
*/
@ApiField("open_id")
private String openId;
/**
* 代表订单状态
*/
@ApiField("token_status")
private String tokenStatus;
/**
* 蚂蚁统一会员ID
*/
@ApiField("user_id")
private String userId;
public void setIdentityResult(String identityResult) {
this.identityResult = identityResult;
}
public String getIdentityResult( ) {
return this.identityResult;
}
public void setIdentityResultSkipUrl(String identityResultSkipUrl) {
this.identityResultSkipUrl = identityResultSkipUrl;
}
public String getIdentityResultSkipUrl( ) {
return this.identityResultSkipUrl;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getOpenId( ) {
return this.openId;
}
public void setTokenStatus(String tokenStatus) {
this.tokenStatus = tokenStatus;
}
public String getTokenStatus( ) {
return this.tokenStatus;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserId( ) {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy