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

com.aliyun.sas20181203.models.DescribePropertyCronItemRequest Maven / Gradle / Ivy

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