com.alipay.api.response.AlipayCommerceTransportOfflinepayKeyQueryResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.AlipayOfflinePayMasterKey;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.transport.offlinepay.key.query response.
*
* @author auto create
* @since 1.0, 2017-09-04 17:13:35
*/
public class AlipayCommerceTransportOfflinepayKeyQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3558294327757893514L;
/**
* 支付宝脱机交易公钥列表。列表中每一项为一个有效的支付宝公钥信息, 其中id字段表示支付宝公钥id。
*/
@ApiListField("keys")
@ApiField("alipay_offline_pay_master_key")
private List keys;
public void setKeys(List keys) {
this.keys = keys;
}
public List getKeys( ) {
return this.keys;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy