![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.UnSuspendProjectResponseBody 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.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class UnSuspendProjectResponseBody extends TeaModel {
@NameInMap("result")
public UnSuspendProjectResponseBodyResult result;
public static UnSuspendProjectResponseBody build(java.util.Map map) throws Exception {
UnSuspendProjectResponseBody self = new UnSuspendProjectResponseBody();
return TeaModel.build(map, self);
}
public UnSuspendProjectResponseBody setResult(UnSuspendProjectResponseBodyResult result) {
this.result = result;
return this;
}
public UnSuspendProjectResponseBodyResult getResult() {
return this.result;
}
public static class UnSuspendProjectResponseBodyResult extends TeaModel {
/**
* example:
* 2022-06-08T07:32:48.958Z
*/
@NameInMap("updated")
public String updated;
public static UnSuspendProjectResponseBodyResult build(java.util.Map map) throws Exception {
UnSuspendProjectResponseBodyResult self = new UnSuspendProjectResponseBodyResult();
return TeaModel.build(map, self);
}
public UnSuspendProjectResponseBodyResult setUpdated(String updated) {
this.updated = updated;
return this;
}
public String getUpdated() {
return this.updated;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy