
com.alipay.api.domain.AlipayFundJointaccountMemberDeleteModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 群成员主动退群
*
* @author auto create
* @since 1.0, 2021-09-07 19:23:28
*/
public class AlipayFundJointaccountMemberDeleteModel extends AlipayObject {
private static final long serialVersionUID = 1836878723693283516L;
/**
* 合花群ID
补充说明:
- 该字段可在签约接口调用后,由alipay.fund.jointaccount.account.completed返回
- 该字段可在签约接口调用后,由alipay.fund.jointaccount.detail.query接口中返回
*/
@ApiField("account_id")
private String accountId;
/**
* 授权协议号
补充说明:
- 该字段可在签约接口调用后,由alipay.fund.jointaccount.account.completed中返回
- 该字段可在签约接口调用后,由alipay.fund.jointaccount.detail.query接口中返回
*/
@ApiField("agreement_no")
private String agreementNo;
/**
* 业务场景
*/
@ApiField("biz_scene")
private String bizScene;
/**
* (操作人)用户唯一标识
*/
@ApiField("identity")
private String identity;
/**
* (操作人)账号类型,参考值如下
- ALIPAY_USER_ID:支付宝侧用户唯一标识
*/
@ApiField("identity_type")
private String identityType;
/**
* 销售产品码
*/
@ApiField("product_code")
private String productCode;
public String getAccountId() {
return this.accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getAgreementNo() {
return this.agreementNo;
}
public void setAgreementNo(String agreementNo) {
this.agreementNo = agreementNo;
}
public String getBizScene() {
return this.bizScene;
}
public void setBizScene(String bizScene) {
this.bizScene = bizScene;
}
public String getIdentity() {
return this.identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getIdentityType() {
return this.identityType;
}
public void setIdentityType(String identityType) {
this.identityType = identityType;
}
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy