All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.CreateInviteUrlRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy