
com.tencentcloudapi.wedata.v20210820.models.GetOfflineInstanceListRequest 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 GetOfflineInstanceListRequest extends AbstractModel {
/**
* Which Page
*/
@SerializedName("PageIndex")
@Expose
private String PageIndex;
/**
* Number of Items per Page
*/
@SerializedName("PageSize")
@Expose
private Long PageSize;
/**
* Project ID
*/
@SerializedName("ProjectId")
@Expose
private String ProjectId;
/**
* No
*/
@SerializedName("SearchCondition")
@Expose
private SearchCondition SearchCondition;
/**
* Get Which Page
* @return PageIndex Which Page
*/
public String getPageIndex() {
return this.PageIndex;
}
/**
* Set Which Page
* @param PageIndex Which Page
*/
public void setPageIndex(String PageIndex) {
this.PageIndex = PageIndex;
}
/**
* 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;
}
/**
* Get Project ID
* @return ProjectId Project ID
*/
public String getProjectId() {
return this.ProjectId;
}
/**
* Set Project ID
* @param ProjectId Project ID
*/
public void setProjectId(String ProjectId) {
this.ProjectId = ProjectId;
}
/**
* Get No
* @return SearchCondition No
*/
public SearchCondition getSearchCondition() {
return this.SearchCondition;
}
/**
* Set No
* @param SearchCondition No
*/
public void setSearchCondition(SearchCondition SearchCondition) {
this.SearchCondition = SearchCondition;
}
public GetOfflineInstanceListRequest() {
}
/**
* 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 GetOfflineInstanceListRequest(GetOfflineInstanceListRequest source) {
if (source.PageIndex != null) {
this.PageIndex = new String(source.PageIndex);
}
if (source.PageSize != null) {
this.PageSize = new Long(source.PageSize);
}
if (source.ProjectId != null) {
this.ProjectId = new String(source.ProjectId);
}
if (source.SearchCondition != null) {
this.SearchCondition = new SearchCondition(source.SearchCondition);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "PageIndex", this.PageIndex);
this.setParamSimple(map, prefix + "PageSize", this.PageSize);
this.setParamSimple(map, prefix + "ProjectId", this.ProjectId);
this.setParamObj(map, prefix + "SearchCondition.", this.SearchCondition);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy