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

com.aliyun.iot20180120.models.GisQueryDeviceLocationRequest 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 GisQueryDeviceLocationRequest extends TeaModel {
    @NameInMap("IotInstanceId")
    public String iotInstanceId;

    @NameInMap("ThingList")
    public java.util.List thingList;

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

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

    public GisQueryDeviceLocationRequest setThingList(java.util.List thingList) {
        this.thingList = thingList;
        return this;
    }
    public java.util.List getThingList() {
        return this.thingList;
    }

    public static class GisQueryDeviceLocationRequestThingList extends TeaModel {
        @NameInMap("DeviceName")
        public String deviceName;

        @NameInMap("ProductKey")
        public String productKey;

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

        public GisQueryDeviceLocationRequestThingList setDeviceName(String deviceName) {
            this.deviceName = deviceName;
            return this;
        }
        public String getDeviceName() {
            return this.deviceName;
        }

        public GisQueryDeviceLocationRequestThingList setProductKey(String productKey) {
            this.productKey = productKey;
            return this;
        }
        public String getProductKey() {
            return this.productKey;
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy