com.antgroup.antchain.openapi.cas.models.Property Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-cas Show documentation
Show all versions of openapi-cas Show documentation
Ant Chain CAS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;
import com.aliyun.tea.*;
public class Property extends TeaModel {
// key
@NameInMap("key")
@Validation(required = true)
public String key;
// value
@NameInMap("value")
public String value;
public static Property build(java.util.Map map) throws Exception {
Property self = new Property();
return TeaModel.build(map, self);
}
public Property setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public Property setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy