com.alipay.api.domain.AnttechBlockchainDefinSaasAccountQueryModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 账号查询
*
* @author auto create
* @since 1.0, 2023-11-22 14:52:58
*/
public class AnttechBlockchainDefinSaasAccountQueryModel extends AlipayObject {
private static final long serialVersionUID = 7624948565965424644L;
/**
* 账号状态过滤,默认查询所有状态账号;
ACTIVE = 查询激活账号
INIT = 查询未激活账号
*/
@ApiField("account_status")
private String accountStatus;
/**
* 买家外部业务平台会员ID
*/
@ApiField("out_member_id")
private ReferenceId outMemberId;
/**
* 会员所属业务平台在智能科技的会员ID
*/
@ApiField("platform_member_id")
private String platformMemberId;
public String getAccountStatus() {
return this.accountStatus;
}
public void setAccountStatus(String accountStatus) {
this.accountStatus = accountStatus;
}
public ReferenceId getOutMemberId() {
return this.outMemberId;
}
public void setOutMemberId(ReferenceId outMemberId) {
this.outMemberId = outMemberId;
}
public String getPlatformMemberId() {
return this.platformMemberId;
}
public void setPlatformMemberId(String platformMemberId) {
this.platformMemberId = platformMemberId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy