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

com.aliyun.iot20180120.models.ConfirmOTATaskRequest 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 ConfirmOTATaskRequest extends TeaModel {
    /**
     * 

The ID of the instance. You can view the instance ID on the Overview page in the IoT Platform console.

*
*
    *
  • If your instance has an ID, you must configure this parameter. If you do not set this parameter, the call fails.
  • *
  • If your instance has no Overview page or ID, you do not need to set this parameter.
  • *
*
*

For more information, see Overview.

* * example: *

iot-v64********

*/ @NameInMap("IotInstanceId") public String iotInstanceId; /** *

This parameter is required.

* * example: *

y3tOmCDNgpR8F9jnVEzC01****

*/ @NameInMap("TaskId") public java.util.List taskId; public static ConfirmOTATaskRequest build(java.util.Map map) throws Exception { ConfirmOTATaskRequest self = new ConfirmOTATaskRequest(); return TeaModel.build(map, self); } public ConfirmOTATaskRequest setIotInstanceId(String iotInstanceId) { this.iotInstanceId = iotInstanceId; return this; } public String getIotInstanceId() { return this.iotInstanceId; } public ConfirmOTATaskRequest setTaskId(java.util.List taskId) { this.taskId = taskId; return this; } public java.util.List getTaskId() { return this.taskId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy