com.alipay.api.domain.Argument 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-08-10 13:44:26
*/
public class Argument extends AlipayObject {
private static final long serialVersionUID = 2538139516239142713L;
/**
* 用户的自定义参数内容
*/
@ApiField("args")
private String args;
/**
* 更新时间(格式为时间戳)
*/
@ApiField("gmt_modified")
private String gmtModified;
/**
* 该字段为自定义参数的名称
*/
@ApiField("name")
private String name;
public String getArgs() {
return this.args;
}
public void setArgs(String args) {
this.args = args;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}