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

com.aliyun.dingtalkhrm_1_0.models.QueryMicroAppViewRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class QueryMicroAppViewRequest extends TeaModel {
    @NameInMap("tenantIdList")
    public java.util.List tenantIdList;

    /**
     * example:
     * 

2163515669935611

*/ @NameInMap("viewUserId") public String viewUserId; public static QueryMicroAppViewRequest build(java.util.Map map) throws Exception { QueryMicroAppViewRequest self = new QueryMicroAppViewRequest(); return TeaModel.build(map, self); } public QueryMicroAppViewRequest setTenantIdList(java.util.List tenantIdList) { this.tenantIdList = tenantIdList; return this; } public java.util.List getTenantIdList() { return this.tenantIdList; } public QueryMicroAppViewRequest setViewUserId(String viewUserId) { this.viewUserId = viewUserId; return this; } public String getViewUserId() { return this.viewUserId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy