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