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.30
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 {
    @NameInMap("authCode")
    public String authCode;

    @NameInMap("targetCorpId")
    public String targetCorpId;

    @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