All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdoc_2_0.models.OpenActionModel Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy