com.aliyun.sas20181203.models.DescribePropertyCronItemRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribePropertyCronItemRequest extends TeaModel {
/**
* The number of the page to return. Default value: 1.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* Specifies whether to forcefully refresh the data that you want to query. Valid values:
*
* - true: yes
* - false: no
*
*
* example:
* false
*/
@NameInMap("ForceFlush")
public Boolean forceFlush;
/**
* The number of entries to return on each page.
*
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The path to the scheduled task.
*
* example:
* /data
*/
@NameInMap("Source")
public String source;
public static DescribePropertyCronItemRequest build(java.util.Map map) throws Exception {
DescribePropertyCronItemRequest self = new DescribePropertyCronItemRequest();
return TeaModel.build(map, self);
}
public DescribePropertyCronItemRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public DescribePropertyCronItemRequest setForceFlush(Boolean forceFlush) {
this.forceFlush = forceFlush;
return this;
}
public Boolean getForceFlush() {
return this.forceFlush;
}
public DescribePropertyCronItemRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribePropertyCronItemRequest setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy