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

com.antgroup.antchain.openapi.deps.models.ServiceInfoGroup Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy