com.aliyun.dingtalkdoc_2_0.models.OpenActionModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class OpenActionModel extends TeaModel {
/**
* example:
* sky
*/
@NameInMap("name")
public String name;
/**
* example:
* 273829092
*/
@NameInMap("timestamp")
public Long timestamp;
public static OpenActionModel build(java.util.Map map) throws Exception {
OpenActionModel self = new OpenActionModel();
return TeaModel.build(map, self);
}
public OpenActionModel setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public OpenActionModel setTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
public Long getTimestamp() {
return this.timestamp;
}
}