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

com.aliyun.iot20180120.models.RetrySoundCodeLabelBatchRequest Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class RetrySoundCodeLabelBatchRequest extends TeaModel {
    @NameInMap("BatchCode")
    public String batchCode;

    @NameInMap("IotInstanceId")
    public String iotInstanceId;

    public static RetrySoundCodeLabelBatchRequest build(java.util.Map map) throws Exception {
        RetrySoundCodeLabelBatchRequest self = new RetrySoundCodeLabelBatchRequest();
        return TeaModel.build(map, self);
    }

    public RetrySoundCodeLabelBatchRequest setBatchCode(String batchCode) {
        this.batchCode = batchCode;
        return this;
    }
    public String getBatchCode() {
        return this.batchCode;
    }

    public RetrySoundCodeLabelBatchRequest setIotInstanceId(String iotInstanceId) {
        this.iotInstanceId = iotInstanceId;
        return this;
    }
    public String getIotInstanceId() {
        return this.iotInstanceId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy