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

com.aliyun.dingtalkh3yun_1_0.models.GetAppsRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkh3yun_1_0.models;

import com.aliyun.tea.*;

public class GetAppsRequest extends TeaModel {
    // 查询类型。All=全部,Solution=以解决方案编码为条件来查询应用,AppCode=以应用编码为条件来查询
    @NameInMap("queryType")
    public String queryType;

    // 待查询的编码数组。queryType参数为All时,此值可为空
    @NameInMap("values")
    public java.util.List values;

    public static GetAppsRequest build(java.util.Map map) throws Exception {
        GetAppsRequest self = new GetAppsRequest();
        return TeaModel.build(map, self);
    }

    public GetAppsRequest setQueryType(String queryType) {
        this.queryType = queryType;
        return this;
    }
    public String getQueryType() {
        return this.queryType;
    }

    public GetAppsRequest setValues(java.util.List values) {
        this.values = values;
        return this;
    }
    public java.util.List getValues() {
        return this.values;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy