com.aliyun.dingtalkexclusive_1_0.models.GetLastOrgAuthDataRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetLastOrgAuthDataRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ding77b8cac4e026cc123xxxxxxxxeb6378f
*/
@NameInMap("targetCorpId")
public String targetCorpId;
public static GetLastOrgAuthDataRequest build(java.util.Map map) throws Exception {
GetLastOrgAuthDataRequest self = new GetLastOrgAuthDataRequest();
return TeaModel.build(map, self);
}
public GetLastOrgAuthDataRequest setTargetCorpId(String targetCorpId) {
this.targetCorpId = targetCorpId;
return this;
}
public String getTargetCorpId() {
return this.targetCorpId;
}
}