com.antgroup.antchain.openapi.deps.models.ServiceInfoGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class ServiceInfoGroup extends TeaModel {
// 发布应用列表
@NameInMap("service_info_list")
@Validation(required = true)
public java.util.List serviceInfoList;
public static ServiceInfoGroup build(java.util.Map map) throws Exception {
ServiceInfoGroup self = new ServiceInfoGroup();
return TeaModel.build(map, self);
}
public ServiceInfoGroup setServiceInfoList(java.util.List serviceInfoList) {
this.serviceInfoList = serviceInfoList;
return this;
}
public java.util.List getServiceInfoList() {
return this.serviceInfoList;
}
}