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

com.aliyun.dingtalkdevicemng_1_0.models.ConnectorEventPushRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdevicemng_1_0.models;

import com.aliyun.tea.*;

public class ConnectorEventPushRequest extends TeaModel {
    /**
     * example:
     * 

DeviceType-xxxxxx

*/ @NameInMap("deviceTypeUuid") public String deviceTypeUuid; /** * example: *

设备关机

*/ @NameInMap("eventName") public String eventName; /** * example: *

{"var1":"value"}

*/ @NameInMap("input") public String input; public static ConnectorEventPushRequest build(java.util.Map map) throws Exception { ConnectorEventPushRequest self = new ConnectorEventPushRequest(); return TeaModel.build(map, self); } public ConnectorEventPushRequest setDeviceTypeUuid(String deviceTypeUuid) { this.deviceTypeUuid = deviceTypeUuid; return this; } public String getDeviceTypeUuid() { return this.deviceTypeUuid; } public ConnectorEventPushRequest setEventName(String eventName) { this.eventName = eventName; return this; } public String getEventName() { return this.eventName; } public ConnectorEventPushRequest setInput(String input) { this.input = input; return this; } public String getInput() { return this.input; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy