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

com.aliyun.eventbridge.models.BatchWindow Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

/**
 * The config of BatchWindow
 */
public class BatchWindow extends TeaModel {
    @NameInMap("CountBasedWindow")
    public Integer countBasedWindow;

    @NameInMap("TimeBasedWindow")
    public Integer timeBasedWindow;

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

    public BatchWindow setCountBasedWindow(Integer countBasedWindow) {
        this.countBasedWindow = countBasedWindow;
        return this;
    }
    public Integer getCountBasedWindow() {
        return this.countBasedWindow;
    }

    public BatchWindow setTimeBasedWindow(Integer timeBasedWindow) {
        this.timeBasedWindow = timeBasedWindow;
        return this;
    }
    public Integer getTimeBasedWindow() {
        return this.timeBasedWindow;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy