com.aliyun.dingtalksearch_1_0.models.UpdateSearchTabRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalksearch_1_0.models;
import com.aliyun.tea.*;
public class UpdateSearchTabRequest extends TeaModel {
@NameInMap("darkIcon")
public String darkIcon;
/**
* if can be null:
* false
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*
* example:
* 专辑
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("priority")
public Integer priority;
@NameInMap("source")
public String source;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("status")
public Integer status;
public static UpdateSearchTabRequest build(java.util.Map map) throws Exception {
UpdateSearchTabRequest self = new UpdateSearchTabRequest();
return TeaModel.build(map, self);
}
public UpdateSearchTabRequest setDarkIcon(String darkIcon) {
this.darkIcon = darkIcon;
return this;
}
public String getDarkIcon() {
return this.darkIcon;
}
public UpdateSearchTabRequest setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public UpdateSearchTabRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateSearchTabRequest setPriority(Integer priority) {
this.priority = priority;
return this;
}
public Integer getPriority() {
return this.priority;
}
public UpdateSearchTabRequest setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public UpdateSearchTabRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}