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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class DeleteTrustedDeviceRequest extends TeaModel {
    @NameInMap("id")
    public Long id;

    /**
     * 

This parameter is required.

* * example: *

false

*/ @NameInMap("kickOff") public Boolean kickOff; /** * example: *

88:92:5a:1f:e8:24

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

This parameter is required.

* * example: *

0119194439361061403

*/ @NameInMap("userId") public String userId; public static DeleteTrustedDeviceRequest build(java.util.Map map) throws Exception { DeleteTrustedDeviceRequest self = new DeleteTrustedDeviceRequest(); return TeaModel.build(map, self); } public DeleteTrustedDeviceRequest setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public DeleteTrustedDeviceRequest setKickOff(Boolean kickOff) { this.kickOff = kickOff; return this; } public Boolean getKickOff() { return this.kickOff; } public DeleteTrustedDeviceRequest setMacAddress(String macAddress) { this.macAddress = macAddress; return this; } public String getMacAddress() { return this.macAddress; } public DeleteTrustedDeviceRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy