com.aliyun.dingtalkwiki_2_0.models.HandOverWorkspaceRequest 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.dingtalkwiki_2_0.models;
import com.aliyun.tea.*;
public class HandOverWorkspaceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* source_owner_id
*/
@NameInMap("sourceOwnerId")
public String sourceOwnerId;
/**
* This parameter is required.
*
* example:
* source_owner_id
*/
@NameInMap("targetOwnerId")
public String targetOwnerId;
/**
* This parameter is required.
*
* example:
* workspace_id
*/
@NameInMap("workspaceId")
public String workspaceId;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
public static HandOverWorkspaceRequest build(java.util.Map map) throws Exception {
HandOverWorkspaceRequest self = new HandOverWorkspaceRequest();
return TeaModel.build(map, self);
}
public HandOverWorkspaceRequest setSourceOwnerId(String sourceOwnerId) {
this.sourceOwnerId = sourceOwnerId;
return this;
}
public String getSourceOwnerId() {
return this.sourceOwnerId;
}
public HandOverWorkspaceRequest setTargetOwnerId(String targetOwnerId) {
this.targetOwnerId = targetOwnerId;
return this;
}
public String getTargetOwnerId() {
return this.targetOwnerId;
}
public HandOverWorkspaceRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public HandOverWorkspaceRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}