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

com.aliyun.dingtalkcrm_1_0.models.BatchSendOfficialAccountOTOMessageResponseBody 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.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class BatchSendOfficialAccountOTOMessageResponseBody extends TeaModel {
    // 开放API
    @NameInMap("requestId")
    public String requestId;

    // result
    @NameInMap("result")
    public BatchSendOfficialAccountOTOMessageResponseBodyResult result;

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

    public BatchSendOfficialAccountOTOMessageResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public BatchSendOfficialAccountOTOMessageResponseBody setResult(BatchSendOfficialAccountOTOMessageResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public BatchSendOfficialAccountOTOMessageResponseBodyResult getResult() {
        return this.result;
    }

    public static class BatchSendOfficialAccountOTOMessageResponseBodyResult extends TeaModel {
        @NameInMap("openPushId")
        public String openPushId;

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

        public BatchSendOfficialAccountOTOMessageResponseBodyResult setOpenPushId(String openPushId) {
            this.openPushId = openPushId;
            return this;
        }
        public String getOpenPushId() {
            return this.openPushId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy