
com.alipay.api.response.AlipayOpenAuthAppAesGetResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.auth.app.aes.get response.
*
* @author auto create
* @since 1.0, 2023-05-31 19:51:42
*/
public class AlipayOpenAuthAppAesGetResponse extends AlipayResponse {
private static final long serialVersionUID = 2565725475758798411L;
/**
* 商家应用AES KEY密文,需要ISV使用三方应用配置的AES密钥内容进行解密。详情参见 应用AES密钥管理。
*/
@ApiField("aes_key")
private String aesKey;
public void setAesKey(String aesKey) {
this.aesKey = aesKey;
}
public String getAesKey( ) {
return this.aesKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy