
com.aliyun.dingtalknotable_1_0.models.UpdateSheetRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalknotable_1_0.models;
import com.aliyun.tea.*;
public class UpdateSheetRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* 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 setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy