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

com.aliyun.dingtalkdatacenter_1_0.models.GetJobInfoRequest Maven / Gradle / Ivy

The 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 GetJobInfoRequest extends TeaModel {
    /**
     * example:
     * 

1

*/ @NameInMap("pageNumber") public Integer pageNumber; /** * example: *

10

*/ @NameInMap("pageSize") public Integer pageSize; /** *

This parameter is required.

*/ @NameInMap("searchKey") public String searchKey; public static GetJobInfoRequest build(java.util.Map map) throws Exception { GetJobInfoRequest self = new GetJobInfoRequest(); return TeaModel.build(map, self); } public GetJobInfoRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public GetJobInfoRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public GetJobInfoRequest setSearchKey(String searchKey) { this.searchKey = searchKey; return this; } public String getSearchKey() { return this.searchKey; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy