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

com.aliyun.dingtalkstorage_1_0.models.DentriesAppPropertiesValue Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkstorage_1_0.models;

import com.aliyun.tea.*;

public class DentriesAppPropertiesValue 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 DentriesAppPropertiesValue build(java.util.Map map) throws Exception { DentriesAppPropertiesValue self = new DentriesAppPropertiesValue(); return TeaModel.build(map, self); } public DentriesAppPropertiesValue setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public DentriesAppPropertiesValue setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public DentriesAppPropertiesValue setVisibility(String visibility) { this.visibility = visibility; return this; } public String getVisibility() { return this.visibility; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy