com.alipay.api.response.AlipayFundScenepayAuthorizeApplyResponse 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.apply response.
*
* @author auto create
* @since 1.0, 2024-04-02 14:37:05
*/
public class AlipayFundScenepayAuthorizeApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 2431515363414428476L;
/**
* 授权申请凭证
*/
@ApiField("apply_token")
private String applyToken;
/**
* 签约跳转URL,使用此URL跳转至支付宝端内完成签约
*/
@ApiField("apply_url")
private String applyUrl;
public void setApplyToken(String applyToken) {
this.applyToken = applyToken;
}
public String getApplyToken( ) {
return this.applyToken;
}
public void setApplyUrl(String applyUrl) {
this.applyUrl = applyUrl;
}
public String getApplyUrl( ) {
return this.applyUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy