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

com.aliyun.dingtalkindustry_1_0.models.ChatMemoFaqAddResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class ChatMemoFaqAddResponseBody extends TeaModel {
    /**
     * example:
     * 

xxxxx

*/ @NameInMap("bizId") public String bizId; /** * example: *

aaaa.doc

*/ @NameInMap("mediaId") public String mediaId; public static ChatMemoFaqAddResponseBody build(java.util.Map map) throws Exception { ChatMemoFaqAddResponseBody self = new ChatMemoFaqAddResponseBody(); return TeaModel.build(map, self); } public ChatMemoFaqAddResponseBody setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public ChatMemoFaqAddResponseBody setMediaId(String mediaId) { this.mediaId = mediaId; return this; } public String getMediaId() { return this.mediaId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy