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

com.aliyun.dingtalkcalendar_1_0.models.DeleteEventRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcalendar_1_0.models;

import com.aliyun.tea.*;

public class DeleteEventRequest extends TeaModel {
    @NameInMap("pushNotification")
    public Boolean pushNotification;

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

    public DeleteEventRequest setPushNotification(Boolean pushNotification) {
        this.pushNotification = pushNotification;
        return this;
    }
    public Boolean getPushNotification() {
        return this.pushNotification;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy