com.alipay.api.response.AlipayEbppMerchantConfigGetResponse 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.MerchantInstConfig;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.merchant.config.get response.
*
* @author auto create
* @since 1.0, 2017-04-07 17:12:49
*/
public class AlipayEbppMerchantConfigGetResponse extends AlipayResponse {
private static final long serialVersionUID = 5858652759382546548L;
/**
* 商户机构配置信息
*/
@ApiListField("inst_configs")
@ApiField("merchant_inst_config")
private List instConfigs;
/**
* 商户的用户ID
*/
@ApiField("merchant_user_id")
private String merchantUserId;
public void setInstConfigs(List instConfigs) {
this.instConfigs = instConfigs;
}
public List getInstConfigs( ) {
return this.instConfigs;
}
public void setMerchantUserId(String merchantUserId) {
this.merchantUserId = merchantUserId;
}
public String getMerchantUserId( ) {
return this.merchantUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy