
com.aliyun.dingtalksns_storage_1_0.models.DentryAppPropertiesValue Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalksns_storage_1_0.models;
import com.aliyun.tea.*;
public class DentryAppPropertiesValue 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 DentryAppPropertiesValue build(java.util.Map map) throws Exception {
DentryAppPropertiesValue self = new DentryAppPropertiesValue();
return TeaModel.build(map, self);
}
public DentryAppPropertiesValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DentryAppPropertiesValue setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
public DentryAppPropertiesValue setVisibility(String visibility) {
this.visibility = visibility;
return this;
}
public String getVisibility() {
return this.visibility;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy