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

com.aliyun.dingtalkdiot_1_0.models.PushEventResponseBody 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.dingtalkdiot_1_0.models;

import com.aliyun.tea.*;

public class PushEventResponseBody extends TeaModel {
    // 事件ID。
    @NameInMap("eventId")
    public String eventId;

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

    public PushEventResponseBody setEventId(String eventId) {
        this.eventId = eventId;
        return this;
    }
    public String getEventId() {
        return this.eventId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy