com.alipay.api.domain.RecommendAccountDTO 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, 2022-01-25 19:39:28
*/
public class RecommendAccountDTO extends AlipayObject {
private static final long serialVersionUID = 4448816487967679128L;
/**
* 推荐商家支付宝登录账号,邮箱或手机号码,脱敏处理
*/
@ApiField("alipay_account")
private String alipayAccount;
/**
* 推荐商家支付宝账号名称,脱敏处理
*/
@ApiField("user_name")
private String userName;
public String getAlipayAccount() {
return this.alipayAccount;
}
public void setAlipayAccount(String alipayAccount) {
this.alipayAccount = alipayAccount;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy