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

com.aliyun.dingtalkrobot_1_0.models.BatchOTOQueryRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkrobot_1_0.models;

import com.aliyun.tea.*;

public class BatchOTOQueryRequest extends TeaModel {
    // 消息已读查询标志
    @NameInMap("processQueryKey")
    public String processQueryKey;

    // 机器人robotCode
    @NameInMap("robotCode")
    public String robotCode;

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

    public BatchOTOQueryRequest setProcessQueryKey(String processQueryKey) {
        this.processQueryKey = processQueryKey;
        return this;
    }
    public String getProcessQueryKey() {
        return this.processQueryKey;
    }

    public BatchOTOQueryRequest setRobotCode(String robotCode) {
        this.robotCode = robotCode;
        return this;
    }
    public String getRobotCode() {
        return this.robotCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy