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

com.aliyun.dingtalkpedia_1_0.models.PediaWordsDeleteRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy