com.alipay.api.domain.AlipayUserSportshealthAccountRollbackModel 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-10-24 15:10:07
*/
public class AlipayUserSportshealthAccountRollbackModel extends AlipayObject {
private static final long serialVersionUID = 3525416217343298362L;
/**
* 账户流水明细描述,会展示在用户运动币明细列表中
*/
@ApiField("memo")
private String memo;
/**
* 蚂蚁统一会员ID
*/
@ApiField("open_id")
private String openId;
/**
* 外部渠道,联系运动运营配置
*/
@ApiField("out_biz_channel")
private String outBizChannel;
/**
* 外部业务号
*/
@ApiField("out_biz_no")
private String outBizNo;
/**
* 支付运动币数量
*/
@ApiField("pay_amount")
private Long payAmount;
/**
* 蚂蚁统一会员ID
*/
@ApiField("user_id")
private String userId;
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getOutBizChannel() {
return this.outBizChannel;
}
public void setOutBizChannel(String outBizChannel) {
this.outBizChannel = outBizChannel;
}
public String getOutBizNo() {
return this.outBizNo;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public Long getPayAmount() {
return this.payAmount;
}
public void setPayAmount(Long payAmount) {
this.payAmount = payAmount;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy