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

com.aliyun.dingtalkdoc_2_0.models.ListRelatedSpaceTeamsRequest 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.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class ListRelatedSpaceTeamsRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

abcd

*/ @NameInMap("operatorId") public String operatorId; @NameInMap("type") public Integer type; public static ListRelatedSpaceTeamsRequest build(java.util.Map map) throws Exception { ListRelatedSpaceTeamsRequest self = new ListRelatedSpaceTeamsRequest(); return TeaModel.build(map, self); } public ListRelatedSpaceTeamsRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public ListRelatedSpaceTeamsRequest setType(Integer type) { this.type = type; return this; } public Integer getType() { return this.type; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy