All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.iot20180120.models.QuerySoundCodeListRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class QuerySoundCodeListRequest extends TeaModel {
    /**
     * example:
     * 

iot_instc_pu****_c*-v64********

*/ @NameInMap("IotInstanceId") public String iotInstanceId; /** * example: *

1

*/ @NameInMap("PageId") public Integer pageId; /** * example: *

20

*/ @NameInMap("PageSize") public Integer pageSize; public static QuerySoundCodeListRequest build(java.util.Map map) throws Exception { QuerySoundCodeListRequest self = new QuerySoundCodeListRequest(); return TeaModel.build(map, self); } public QuerySoundCodeListRequest setIotInstanceId(String iotInstanceId) { this.iotInstanceId = iotInstanceId; return this; } public String getIotInstanceId() { return this.iotInstanceId; } public QuerySoundCodeListRequest setPageId(Integer pageId) { this.pageId = pageId; return this; } public Integer getPageId() { return this.pageId; } public QuerySoundCodeListRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy