com.alipay.api.domain.MemoElement 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-11-03 11:24:36
*/
public class MemoElement extends AlipayObject {
private static final long serialVersionUID = 3144713446115567488L;
/**
* 是否是常量,默认常量
*/
@ApiField("constant")
private Boolean constant;
/**
* 字段替换的key,DEBIT_ACCOUNT_NO/CREDIT_ACCOUNT_NO/DEBIT_INST_ID/CREDIT_INST_ID/TRANS_TIME/BIZ_NO
付款账号/收款账号/付款账户机构id/收款账户机构id/交易时间/业务单号
*/
@ApiField("key")
private String key;
public Boolean getConstant() {
return this.constant;
}
public void setConstant(Boolean constant) {
this.constant = constant;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}