![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkstorage_1_0.models.ResultItemsDentryAppPropertiesValue 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.dingtalkstorage_1_0.models;
import com.aliyun.tea.*;
public class ResultItemsDentryAppPropertiesValue extends TeaModel {
/**
* example:
* property_name
*/
@NameInMap("name")
public String name;
/**
* example:
* property_value
*/
@NameInMap("value")
public String value;
/**
* example:
* PRIVATE
*/
@NameInMap("visibility")
public String visibility;
public static ResultItemsDentryAppPropertiesValue build(java.util.Map map) throws Exception {
ResultItemsDentryAppPropertiesValue self = new ResultItemsDentryAppPropertiesValue();
return TeaModel.build(map, self);
}
public ResultItemsDentryAppPropertiesValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ResultItemsDentryAppPropertiesValue setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
public ResultItemsDentryAppPropertiesValue setVisibility(String visibility) {
this.visibility = visibility;
return this;
}
public String getVisibility() {
return this.visibility;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy