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

com.aliyun.dingtalkconference_1_0.models.LockConferenceRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class LockConferenceRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

lock

*/ @NameInMap("action") public String action; public static LockConferenceRequest build(java.util.Map map) throws Exception { LockConferenceRequest self = new LockConferenceRequest(); return TeaModel.build(map, self); } public LockConferenceRequest setAction(String action) { this.action = action; return this; } public String getAction() { return this.action; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy