com.aliyun.iot20180120.models.StopParserRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class StopParserRequest extends TeaModel {
/**
* example:
* iot-n8t***
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* This parameter is required.
*
* example:
* 1001
*/
@NameInMap("ParserId")
public Long parserId;
public static StopParserRequest build(java.util.Map map) throws Exception {
StopParserRequest self = new StopParserRequest();
return TeaModel.build(map, self);
}
public StopParserRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public StopParserRequest setParserId(Long parserId) {
this.parserId = parserId;
return this;
}
public Long getParserId() {
return this.parserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy