|
| 1 | +// This file is auto-generated, don't edit it. Thanks. |
| 2 | +package com.aliyun.domain20180208.models; |
| 3 | + |
| 4 | +import com.aliyun.tea.*; |
| 5 | + |
| 6 | +public class QueryExportDomainExpireSnatchsShrinkRequest extends TeaModel { |
| 7 | + /** |
| 8 | + * <p>This parameter is required.</p> |
| 9 | + * |
| 10 | + * <strong>example:</strong> |
| 11 | + * <p>1</p> |
| 12 | + */ |
| 13 | + @NameInMap("CurrentId") |
| 14 | + public Long currentId; |
| 15 | + |
| 16 | + @NameInMap("DataSources") |
| 17 | + public String dataSourcesShrink; |
| 18 | + |
| 19 | + /** |
| 20 | + * <strong>example:</strong> |
| 21 | + * <p>50</p> |
| 22 | + */ |
| 23 | + @NameInMap("MaxResults") |
| 24 | + public Integer maxResults; |
| 25 | + |
| 26 | + /** |
| 27 | + * <p>This parameter is required.</p> |
| 28 | + * |
| 29 | + * <strong>example:</strong> |
| 30 | + * <p>f07b150eadfa1d7a</p> |
| 31 | + */ |
| 32 | + @NameInMap("NextToken") |
| 33 | + public String nextToken; |
| 34 | + |
| 35 | + /** |
| 36 | + * <p>This parameter is required.</p> |
| 37 | + * |
| 38 | + * <strong>example:</strong> |
| 39 | + * <p>1</p> |
| 40 | + */ |
| 41 | + @NameInMap("PageSize") |
| 42 | + public Integer pageSize; |
| 43 | + |
| 44 | + public static QueryExportDomainExpireSnatchsShrinkRequest build(java.util.Map<String, ?> map) throws Exception { |
| 45 | + QueryExportDomainExpireSnatchsShrinkRequest self = new QueryExportDomainExpireSnatchsShrinkRequest(); |
| 46 | + return TeaModel.build(map, self); |
| 47 | + } |
| 48 | + |
| 49 | + public QueryExportDomainExpireSnatchsShrinkRequest setCurrentId(Long currentId) { |
| 50 | + this.currentId = currentId; |
| 51 | + return this; |
| 52 | + } |
| 53 | + public Long getCurrentId() { |
| 54 | + return this.currentId; |
| 55 | + } |
| 56 | + |
| 57 | + public QueryExportDomainExpireSnatchsShrinkRequest setDataSourcesShrink(String dataSourcesShrink) { |
| 58 | + this.dataSourcesShrink = dataSourcesShrink; |
| 59 | + return this; |
| 60 | + } |
| 61 | + public String getDataSourcesShrink() { |
| 62 | + return this.dataSourcesShrink; |
| 63 | + } |
| 64 | + |
| 65 | + public QueryExportDomainExpireSnatchsShrinkRequest setMaxResults(Integer maxResults) { |
| 66 | + this.maxResults = maxResults; |
| 67 | + return this; |
| 68 | + } |
| 69 | + public Integer getMaxResults() { |
| 70 | + return this.maxResults; |
| 71 | + } |
| 72 | + |
| 73 | + public QueryExportDomainExpireSnatchsShrinkRequest setNextToken(String nextToken) { |
| 74 | + this.nextToken = nextToken; |
| 75 | + return this; |
| 76 | + } |
| 77 | + public String getNextToken() { |
| 78 | + return this.nextToken; |
| 79 | + } |
| 80 | + |
| 81 | + public QueryExportDomainExpireSnatchsShrinkRequest setPageSize(Integer pageSize) { |
| 82 | + this.pageSize = pageSize; |
| 83 | + return this; |
| 84 | + } |
| 85 | + public Integer getPageSize() { |
| 86 | + return this.pageSize; |
| 87 | + } |
| 88 | + |
| 89 | +} |
0 commit comments