com.aliyun.dingtalkpedia_1_0.models.PediaWordsDeleteRequest 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.dingtalkpedia_1_0.models;
import com.aliyun.tea.*;
public class PediaWordsDeleteRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 2123132
*/
@NameInMap("userId")
public String userId;
/**
* This parameter is required.
*
* example:
* 212112
*/
@NameInMap("uuid")
public Long uuid;
public static PediaWordsDeleteRequest build(java.util.Map map) throws Exception {
PediaWordsDeleteRequest self = new PediaWordsDeleteRequest();
return TeaModel.build(map, self);
}
public PediaWordsDeleteRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public PediaWordsDeleteRequest setUuid(Long uuid) {
this.uuid = uuid;
return this;
}
public Long getUuid() {
return this.uuid;
}
}