com.alipay.api.domain.AlipayOpenAuthTokenAppQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询某个ISV下的指定app_auth_token的授权信息:授权者、授权接口列表、状态、过期时间等
*
* @author auto create
* @since 1.0, 2016-07-18 13:35:47
*/
public class AlipayOpenAuthTokenAppQueryModel extends AlipayObject {
private static final long serialVersionUID = 3428396164178359284L;
/**
* 应用授权令牌
*/
@ApiField("app_auth_token")
private String appAuthToken;
public String getAppAuthToken() {
return this.appAuthToken;
}
public void setAppAuthToken(String appAuthToken) {
this.appAuthToken = appAuthToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy