com.aliyun.iot20180120.models.AddDataForApiSourceRequest 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 AddDataForApiSourceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cxatswiniekxw***
*/
@NameInMap("ApiId")
public String apiId;
/**
* This parameter is required.
*
* example:
* {"key":"value","ts":16376582*****}
*/
@NameInMap("Content")
public String content;
/**
* This parameter is required.
*
* example:
* iot-0pp1n*****
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static AddDataForApiSourceRequest build(java.util.Map map) throws Exception {
AddDataForApiSourceRequest self = new AddDataForApiSourceRequest();
return TeaModel.build(map, self);
}
public AddDataForApiSourceRequest setApiId(String apiId) {
this.apiId = apiId;
return this;
}
public String getApiId() {
return this.apiId;
}
public AddDataForApiSourceRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public AddDataForApiSourceRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy