com.aliyun.devs20230714.models.ListRepositoriesShrinkRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devs20230714 Show documentation
Show all versions of devs20230714 Show documentation
Alibaba Cloud Devs (20230714) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.devs20230714.models;
import com.aliyun.tea.*;
public class ListRepositoriesShrinkRequest extends TeaModel {
@NameInMap("keyword")
public String keyword;
@NameInMap("labelSelector")
public String labelSelectorShrink;
@NameInMap("pageNumber")
public Long pageNumber;
@NameInMap("pageSize")
public Long pageSize;
public static ListRepositoriesShrinkRequest build(java.util.Map map) throws Exception {
ListRepositoriesShrinkRequest self = new ListRepositoriesShrinkRequest();
return TeaModel.build(map, self);
}
public ListRepositoriesShrinkRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public ListRepositoriesShrinkRequest setLabelSelectorShrink(String labelSelectorShrink) {
this.labelSelectorShrink = labelSelectorShrink;
return this;
}
public String getLabelSelectorShrink() {
return this.labelSelectorShrink;
}
public ListRepositoriesShrinkRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListRepositoriesShrinkRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}