com.aliyun.datalake20200710.models.SortCriterion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class SortCriterion extends TeaModel {
// 排序字段
@NameInMap("FieldName")
public String fieldName;
// 排序方式
@NameInMap("Sort")
public String sort;
public static SortCriterion build(java.util.Map map) throws Exception {
SortCriterion self = new SortCriterion();
return TeaModel.build(map, self);
}
public SortCriterion setFieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
public String getFieldName() {
return this.fieldName;
}
public SortCriterion setSort(String sort) {
this.sort = sort;
return this;
}
public String getSort() {
return this.sort;
}
}