
com.aliyun.ice20201109.models.ListCustomizedVoicesRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class ListCustomizedVoicesRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("PageNo")
public Integer pageNo;
/**
* example:
* 10
*/
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("Type")
public String type;
public static ListCustomizedVoicesRequest build(java.util.Map map) throws Exception {
ListCustomizedVoicesRequest self = new ListCustomizedVoicesRequest();
return TeaModel.build(map, self);
}
public ListCustomizedVoicesRequest setPageNo(Integer pageNo) {
this.pageNo = pageNo;
return this;
}
public Integer getPageNo() {
return this.pageNo;
}
public ListCustomizedVoicesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListCustomizedVoicesRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy