com.aliyun.iot20180120.models.UpdateParserRequest 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 UpdateParserRequest extends TeaModel {
@NameInMap("Description")
public String description;
/**
* example:
* iot-8t***
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* example:
* DataParserTwo
*/
@NameInMap("Name")
public String name;
/**
* This parameter is required.
*
* example:
* 1001
*/
@NameInMap("ParserId")
public Long parserId;
public static UpdateParserRequest build(java.util.Map map) throws Exception {
UpdateParserRequest self = new UpdateParserRequest();
return TeaModel.build(map, self);
}
public UpdateParserRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public UpdateParserRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public UpdateParserRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateParserRequest setParserId(Long parserId) {
this.parserId = parserId;
return this;
}
public Long getParserId() {
return this.parserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy