
com.alipay.api.domain.OperatorAccountVO 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, 2023-03-29 15:46:17
*/
public class OperatorAccountVO extends AlipayObject {
private static final long serialVersionUID = 7691187972941626274L;
/**
* 关联账号ID
*/
@ApiField("account_id")
private String accountId;
/**
* 关联账号类型。枚举值参考OperatorRelAccountTypeEnum
account_type=01,则account_id为支付宝userId
account_type=02,则account_id为钉钉账号id
account_type=03,则account_id为支付宝oid
*/
@ApiField("account_type")
private String accountType;
/**
* 关联账号openId
*/
@ApiField("open_id")
private String openId;
public String getAccountId() {
return this.accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getAccountType() {
return this.accountType;
}
public void setAccountType(String accountType) {
this.accountType = accountType;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy