com.alipay.api.response.AlipayFundEnterprisepayGroupQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.fund.enterprisepay.group.query response.
*
* @author auto create
* @since 1.0, 2023-09-11 19:16:54
*/
public class AlipayFundEnterprisepayGroupQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3531544669788645923L;
/**
* 企业签约账户ID
*/
@ApiField("account_id")
private String accountId;
/**
* 内部群组号
*/
@ApiField("fund_group_id")
private String fundGroupId;
/**
* 该群所对应的出资主体账号
*/
@ApiField("fund_identity")
private String fundIdentity;
/**
* 群组名称
*/
@ApiField("group_name")
private String groupName;
/**
* 外部群组号
*/
@ApiField("out_group_id")
private String outGroupId;
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getAccountId( ) {
return this.accountId;
}
public void setFundGroupId(String fundGroupId) {
this.fundGroupId = fundGroupId;
}
public String getFundGroupId( ) {
return this.fundGroupId;
}
public void setFundIdentity(String fundIdentity) {
this.fundIdentity = fundIdentity;
}
public String getFundIdentity( ) {
return this.fundIdentity;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getGroupName( ) {
return this.groupName;
}
public void setOutGroupId(String outGroupId) {
this.outGroupId = outGroupId;
}
public String getOutGroupId( ) {
return this.outGroupId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy