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

com.aliyun.iot20180120.models.CreateParserRequest 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 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