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

com.aliyun.dingtalkimpaas_1_0.models.RecallMessageRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class RecallMessageRequest extends TeaModel {
    @NameInMap("messageId")
    public String messageId;

    @NameInMap("operatorUid")
    public String operatorUid;

    @NameInMap("type")
    public Integer type;

    public static RecallMessageRequest build(java.util.Map map) throws Exception {
        RecallMessageRequest self = new RecallMessageRequest();
        return TeaModel.build(map, self);
    }

    public RecallMessageRequest setMessageId(String messageId) {
        this.messageId = messageId;
        return this;
    }
    public String getMessageId() {
        return this.messageId;
    }

    public RecallMessageRequest setOperatorUid(String operatorUid) {
        this.operatorUid = operatorUid;
        return this;
    }
    public String getOperatorUid() {
        return this.operatorUid;
    }

    public RecallMessageRequest setType(Integer type) {
        this.type = type;
        return this;
    }
    public Integer getType() {
        return this.type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy