com.alipay.api.response.AlipayOpenPublicDefaultExtensionCreateResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.public.default.extension.create response.
*
* @author auto create
* @since 1.0, 2017-08-07 18:01:45
*/
public class AlipayOpenPublicDefaultExtensionCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 4241462871917746639L;
/**
* 一套扩展区的key,创建一套扩展区成功后,支付宝会将该字段返回,后续对扩展区进行删除等操作都会用到这个值。
*/
@ApiField("extension_key")
private String extensionKey;
public void setExtensionKey(String extensionKey) {
this.extensionKey = extensionKey;
}
public String getExtensionKey( ) {
return this.extensionKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy