com.aliyun.dingtalkworkflow_1_0.models.GetAttachmentSpaceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class GetAttachmentSpaceRequest extends TeaModel {
/**
* example:
* 8345000
*/
@NameInMap("agentId")
public Long agentId;
/**
* This parameter is required.
*
* example:
* user123
*/
@NameInMap("userId")
public String userId;
public static GetAttachmentSpaceRequest build(java.util.Map map) throws Exception {
GetAttachmentSpaceRequest self = new GetAttachmentSpaceRequest();
return TeaModel.build(map, self);
}
public GetAttachmentSpaceRequest setAgentId(Long agentId) {
this.agentId = agentId;
return this;
}
public Long getAgentId() {
return this.agentId;
}
public GetAttachmentSpaceRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}