com.antgroup.antchain.openapi.twc.models.LeaseOrderExtra Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class LeaseOrderExtra extends TeaModel {
// 额外信息的主键
@NameInMap("key")
@Validation(required = true)
public String key;
// 额外信息的值
@NameInMap("value")
@Validation(required = true)
public String value;
public static LeaseOrderExtra build(java.util.Map map) throws Exception {
LeaseOrderExtra self = new LeaseOrderExtra();
return TeaModel.build(map, self);
}
public LeaseOrderExtra setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public LeaseOrderExtra setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}