
com.aliyun.dingtalkdoc_2_0.models.GetTotalNumberOfSpacesRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class GetTotalNumberOfSpacesRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* abcd
*/
@NameInMap("operatorId")
public String operatorId;
public static GetTotalNumberOfSpacesRequest build(java.util.Map map) throws Exception {
GetTotalNumberOfSpacesRequest self = new GetTotalNumberOfSpacesRequest();
return TeaModel.build(map, self);
}
public GetTotalNumberOfSpacesRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy