com.aliyun.dingtalkchengfeng_1_0.models.TransferUserObjectiveResponseBody 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class TransferUserObjectiveResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("content")
public Boolean content;
/**
* example:
* 1111
*/
@NameInMap("requestId")
public String requestId;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static TransferUserObjectiveResponseBody build(java.util.Map map) throws Exception {
TransferUserObjectiveResponseBody self = new TransferUserObjectiveResponseBody();
return TeaModel.build(map, self);
}
public TransferUserObjectiveResponseBody setContent(Boolean content) {
this.content = content;
return this;
}
public Boolean getContent() {
return this.content;
}
public TransferUserObjectiveResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public TransferUserObjectiveResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}