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

com.aliyun.dingtalkats_1_0.models.ReportMessageStatusRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkats_1_0.models;

import com.aliyun.tea.*;

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

ddats

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

corp-ABC-prd

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

INVALID_USER

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

无效用户

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

594c5b30-57bd-4001-8903-4dc64cdc6739

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

AppUid@Channel

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

AppUid@Channel

*/ @NameInMap("senderUserId") public String senderUserId; public static ReportMessageStatusRequest build(java.util.Map map) throws Exception { ReportMessageStatusRequest self = new ReportMessageStatusRequest(); return TeaModel.build(map, self); } public ReportMessageStatusRequest setBizCode(String bizCode) { this.bizCode = bizCode; return this; } public String getBizCode() { return this.bizCode; } public ReportMessageStatusRequest setChannel(String channel) { this.channel = channel; return this; } public String getChannel() { return this.channel; } public ReportMessageStatusRequest setErrorCode(String errorCode) { this.errorCode = errorCode; return this; } public String getErrorCode() { return this.errorCode; } public ReportMessageStatusRequest setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; return this; } public String getErrorMsg() { return this.errorMsg; } public ReportMessageStatusRequest setMessageId(String messageId) { this.messageId = messageId; return this; } public String getMessageId() { return this.messageId; } public ReportMessageStatusRequest setReceiverUserId(String receiverUserId) { this.receiverUserId = receiverUserId; return this; } public String getReceiverUserId() { return this.receiverUserId; } public ReportMessageStatusRequest setSenderUserId(String senderUserId) { this.senderUserId = senderUserId; return this; } public String getSenderUserId() { return this.senderUserId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy