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

com.aliyun.dingtalkai_interaction_1_0.models.PrepareRequest 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.dingtalkai_interaction_1_0.models;

import com.aliyun.tea.*;

public class PrepareRequest extends TeaModel {
    @NameInMap("content")
    public String content;

    /**
     * 

This parameter is required.

*/ @NameInMap("contentType") public String contentType; @NameInMap("openConversationId") public String openConversationId; @NameInMap("unionId") public String unionId; public static PrepareRequest build(java.util.Map map) throws Exception { PrepareRequest self = new PrepareRequest(); return TeaModel.build(map, self); } public PrepareRequest setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public PrepareRequest setContentType(String contentType) { this.contentType = contentType; return this; } public String getContentType() { return this.contentType; } public PrepareRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public PrepareRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy