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

com.aliyun.dingtalklink_1_0.models.SendInteractiveOTOMessageResponseBody 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.dingtalklink_1_0.models;

import com.aliyun.tea.*;

public class SendInteractiveOTOMessageResponseBody extends TeaModel {
    @NameInMap("requestId")
    public String requestId;

    /**
     * 

This parameter is required.

*/ @NameInMap("result") public SendInteractiveOTOMessageResponseBodyResult result; public static SendInteractiveOTOMessageResponseBody build(java.util.Map map) throws Exception { SendInteractiveOTOMessageResponseBody self = new SendInteractiveOTOMessageResponseBody(); return TeaModel.build(map, self); } public SendInteractiveOTOMessageResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SendInteractiveOTOMessageResponseBody setResult(SendInteractiveOTOMessageResponseBodyResult result) { this.result = result; return this; } public SendInteractiveOTOMessageResponseBodyResult getResult() { return this.result; } public static class SendInteractiveOTOMessageResponseBodyResult extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("openPushId") public String openPushId; public static SendInteractiveOTOMessageResponseBodyResult build(java.util.Map map) throws Exception { SendInteractiveOTOMessageResponseBodyResult self = new SendInteractiveOTOMessageResponseBodyResult(); return TeaModel.build(map, self); } public SendInteractiveOTOMessageResponseBodyResult setOpenPushId(String openPushId) { this.openPushId = openPushId; return this; } public String getOpenPushId() { return this.openPushId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy