com.alipay.api.response.AlipayFundScenepayAuthorizeQueryResponse 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: alipay.fund.scenepay.authorize.query response.
*
* @author auto create
* @since 1.0, 2024-04-17 14:35:14
*/
public class AlipayFundScenepayAuthorizeQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6547649736587229531L;
/**
* 授权ID
*/
@ApiField("authorization_id")
private String authorizationId;
/**
* 已签约则展示签约管理链接
*/
@ApiField("authorize_manage_url")
private String authorizeManageUrl;
/**
* 签约平台
*/
@ApiField("authorize_platform")
private String authorizePlatform;
/**
* 外部签约号
*/
@ApiField("out_agreement_no")
private String outAgreementNo;
/**
* NORMAL 正常状态
UNSIGN 未签约或已解约
*/
@ApiField("status")
private String status;
public void setAuthorizationId(String authorizationId) {
this.authorizationId = authorizationId;
}
public String getAuthorizationId( ) {
return this.authorizationId;
}
public void setAuthorizeManageUrl(String authorizeManageUrl) {
this.authorizeManageUrl = authorizeManageUrl;
}
public String getAuthorizeManageUrl( ) {
return this.authorizeManageUrl;
}
public void setAuthorizePlatform(String authorizePlatform) {
this.authorizePlatform = authorizePlatform;
}
public String getAuthorizePlatform( ) {
return this.authorizePlatform;
}
public void setOutAgreementNo(String outAgreementNo) {
this.outAgreementNo = outAgreementNo;
}
public String getOutAgreementNo( ) {
return this.outAgreementNo;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus( ) {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy