
com.tencentcloudapi.iot.v20180123.models.GetDevicesRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.iot.v20180123.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class GetDevicesRequest extends AbstractModel{
/**
* 产品Id
*/
@SerializedName("ProductId")
@Expose
private String ProductId;
/**
* 偏移
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* 长度
*/
@SerializedName("Length")
@Expose
private Long Length;
/**
* 关键字查询
*/
@SerializedName("Keyword")
@Expose
private String Keyword;
/**
* Get 产品Id
* @return ProductId 产品Id
*/
public String getProductId() {
return this.ProductId;
}
/**
* Set 产品Id
* @param ProductId 产品Id
*/
public void setProductId(String ProductId) {
this.ProductId = ProductId;
}
/**
* Get 偏移
* @return Offset 偏移
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set 偏移
* @param Offset 偏移
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get 长度
* @return Length 长度
*/
public Long getLength() {
return this.Length;
}
/**
* Set 长度
* @param Length 长度
*/
public void setLength(Long Length) {
this.Length = Length;
}
/**
* Get 关键字查询
* @return Keyword 关键字查询
*/
public String getKeyword() {
return this.Keyword;
}
/**
* Set 关键字查询
* @param Keyword 关键字查询
*/
public void setKeyword(String Keyword) {
this.Keyword = Keyword;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ProductId", this.ProductId);
this.setParamSimple(map, prefix + "Offset", this.Offset);
this.setParamSimple(map, prefix + "Length", this.Length);
this.setParamSimple(map, prefix + "Keyword", this.Keyword);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy