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

com.aliyun.dingtalkdatacenter_1_0.models.GetEventDataRequest 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.dingtalkdatacenter_1_0.models;

import com.aliyun.tea.*;

public class GetEventDataRequest extends TeaModel {
    @NameInMap("bizId")
    public String bizId;

    /**
     * 

This parameter is required.

* * example: *

819e50d7c32e9096

*/ @NameInMap("eventUid") public String eventUid; @NameInMap("subId") public String subId; public static GetEventDataRequest build(java.util.Map map) throws Exception { GetEventDataRequest self = new GetEventDataRequest(); return TeaModel.build(map, self); } public GetEventDataRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public GetEventDataRequest setEventUid(String eventUid) { this.eventUid = eventUid; return this; } public String getEventUid() { return this.eventUid; } public GetEventDataRequest setSubId(String subId) { this.subId = subId; return this; } public String getSubId() { return this.subId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy