
com.alipay.api.response.AlipayIserviceCcmIsvInitializeResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.iservice.ccm.isv.initialize response.
*
* @author auto create
* @since 1.0, 2023-05-30 23:25:17
*/
public class AlipayIserviceCcmIsvInitializeResponse extends AlipayResponse {
private static final long serialVersionUID = 7534295663512956793L;
/**
* Base64编码CCM公钥:CCM公私钥对由CCM自动生成,用于Iframe spi接口安全认证
*/
@ApiField("ccm_pub_key")
private String ccmPubKey;
public void setCcmPubKey(String ccmPubKey) {
this.ccmPubKey = ccmPubKey;
}
public String getCcmPubKey( ) {
return this.ccmPubKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy