com.aliyun.dingtalkedu_1_0.models.CreateInviteUrlRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class CreateInviteUrlRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("authCode")
public String authCode;
/**
* This parameter is required.
*/
@NameInMap("targetCorpId")
public String targetCorpId;
/**
* This parameter is required.
*/
@NameInMap("targetOperator")
public String targetOperator;
public static CreateInviteUrlRequest build(java.util.Map map) throws Exception {
CreateInviteUrlRequest self = new CreateInviteUrlRequest();
return TeaModel.build(map, self);
}
public CreateInviteUrlRequest setAuthCode(String authCode) {
this.authCode = authCode;
return this;
}
public String getAuthCode() {
return this.authCode;
}
public CreateInviteUrlRequest setTargetCorpId(String targetCorpId) {
this.targetCorpId = targetCorpId;
return this;
}
public String getTargetCorpId() {
return this.targetCorpId;
}
public CreateInviteUrlRequest setTargetOperator(String targetOperator) {
this.targetOperator = targetOperator;
return this;
}
public String getTargetOperator() {
return this.targetOperator;
}
}