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

com.aliyun.dingtalkdoc_1_0.models.UpdateSheetRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

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

sheet_name

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

visible

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

This parameter is required.

* * example: *

union_id

*/ @NameInMap("operatorId") public String operatorId; public static UpdateSheetRequest build(java.util.Map map) throws Exception { UpdateSheetRequest self = new UpdateSheetRequest(); return TeaModel.build(map, self); } public UpdateSheetRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public UpdateSheetRequest setVisibility(String visibility) { this.visibility = visibility; return this; } public String getVisibility() { return this.visibility; } public UpdateSheetRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy