com.aliyun.dingtalkdoc_2_0.models.GetUuidByDentryIdResponseBody 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 GetUuidByDentryIdResponseBody extends TeaModel {
@NameInMap("dentryId")
public String dentryId;
@NameInMap("dentryUuid")
public String dentryUuid;
@NameInMap("spaceId")
public String spaceId;
public static GetUuidByDentryIdResponseBody build(java.util.Map map) throws Exception {
GetUuidByDentryIdResponseBody self = new GetUuidByDentryIdResponseBody();
return TeaModel.build(map, self);
}
public GetUuidByDentryIdResponseBody setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public GetUuidByDentryIdResponseBody setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public GetUuidByDentryIdResponseBody setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
}