com.antgroup.antchain.openapi.rms.models.ContainVals Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class ContainVals extends TeaModel {
// 包含值列表
@NameInMap("vals")
public java.util.List vals;
public static ContainVals build(java.util.Map map) throws Exception {
ContainVals self = new ContainVals();
return TeaModel.build(map, self);
}
public ContainVals setVals(java.util.List vals) {
this.vals = vals;
return this;
}
public java.util.List getVals() {
return this.vals;
}
}