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

com.aliyun.dingtalkexclusive_1_0.models.SaveOpenTerminalInfoRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SaveOpenTerminalInfoRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

dingf8d907412a586

*/ @NameInMap("corpId") public String corpId; /** *

This parameter is required.

* * example: *

云枢

*/ @NameInMap("logSource") public String logSource; /** *

This parameter is required.

* * example: *

terminalInfo

*/ @NameInMap("logType") public String logType; /** *

This parameter is required.

* * example: *

[{"date":"2023-05-10","macAddress":"34-2E-B7-AF-EA-JF","devSn":"68D1F0-B76A-5CC9-BCFC-BD7548BA","staffId":"05166141678164"}]

*/ @NameInMap("openExt") public String openExt; public static SaveOpenTerminalInfoRequest build(java.util.Map map) throws Exception { SaveOpenTerminalInfoRequest self = new SaveOpenTerminalInfoRequest(); return TeaModel.build(map, self); } public SaveOpenTerminalInfoRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public SaveOpenTerminalInfoRequest setLogSource(String logSource) { this.logSource = logSource; return this; } public String getLogSource() { return this.logSource; } public SaveOpenTerminalInfoRequest setLogType(String logType) { this.logType = logType; return this; } public String getLogType() { return this.logType; } public SaveOpenTerminalInfoRequest setOpenExt(String openExt) { this.openExt = openExt; return this; } public String getOpenExt() { return this.openExt; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy