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

com.aliyun.dingtalkindustry_1_0.models.SupplyAddMemberResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class SupplyAddMemberResponseBody extends TeaModel {
    @NameInMap("result")
    public SupplyAddMemberResponseBodyResult result;

    public static SupplyAddMemberResponseBody build(java.util.Map map) throws Exception {
        SupplyAddMemberResponseBody self = new SupplyAddMemberResponseBody();
        return TeaModel.build(map, self);
    }

    public SupplyAddMemberResponseBody setResult(SupplyAddMemberResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public SupplyAddMemberResponseBodyResult getResult() {
        return this.result;
    }

    public static class SupplyAddMemberResponseBodyResult extends TeaModel {
        /**
         * 

This parameter is required.

* * example: *

NORMAL

*/ @NameInMap("dingMemberStatus") public String dingMemberStatus; /** *

This parameter is required.

* * example: *

12345abc

*/ @NameInMap("unionId") public String unionId; /** * example: *

12345abc

*/ @NameInMap("userId") public String userId; public static SupplyAddMemberResponseBodyResult build(java.util.Map map) throws Exception { SupplyAddMemberResponseBodyResult self = new SupplyAddMemberResponseBodyResult(); return TeaModel.build(map, self); } public SupplyAddMemberResponseBodyResult setDingMemberStatus(String dingMemberStatus) { this.dingMemberStatus = dingMemberStatus; return this; } public String getDingMemberStatus() { return this.dingMemberStatus; } public SupplyAddMemberResponseBodyResult setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public SupplyAddMemberResponseBodyResult setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy