
com.tencentcloudapi.wedata.v20210820.models.DescribeEventConsumeTasksRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.wedata.v20210820.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeEventConsumeTasksRequest extends AbstractModel {
/**
* Event Instance ID
*/
@SerializedName("EventCaseId")
@Expose
private String EventCaseId;
/**
* Page Number
*/
@SerializedName("PageNumber")
@Expose
private Long PageNumber;
/**
* Number of items per page
*/
@SerializedName("PageSize")
@Expose
private Long PageSize;
/**
* Get Event Instance ID
* @return EventCaseId Event Instance ID
*/
public String getEventCaseId() {
return this.EventCaseId;
}
/**
* Set Event Instance ID
* @param EventCaseId Event Instance ID
*/
public void setEventCaseId(String EventCaseId) {
this.EventCaseId = EventCaseId;
}
/**
* Get Page Number
* @return PageNumber Page Number
*/
public Long getPageNumber() {
return this.PageNumber;
}
/**
* Set Page Number
* @param PageNumber Page Number
*/
public void setPageNumber(Long PageNumber) {
this.PageNumber = PageNumber;
}
/**
* Get Number of items per page
* @return PageSize Number of items per page
*/
public Long getPageSize() {
return this.PageSize;
}
/**
* Set Number of items per page
* @param PageSize Number of items per page
*/
public void setPageSize(Long PageSize) {
this.PageSize = PageSize;
}
public DescribeEventConsumeTasksRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeEventConsumeTasksRequest(DescribeEventConsumeTasksRequest source) {
if (source.EventCaseId != null) {
this.EventCaseId = new String(source.EventCaseId);
}
if (source.PageNumber != null) {
this.PageNumber = new Long(source.PageNumber);
}
if (source.PageSize != null) {
this.PageSize = new Long(source.PageSize);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "EventCaseId", this.EventCaseId);
this.setParamSimple(map, prefix + "PageNumber", this.PageNumber);
this.setParamSimple(map, prefix + "PageSize", this.PageSize);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy