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

com.aliyun.dingtalkcontact_1_0.models.GetAccountMappingResponseBody 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.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class GetAccountMappingResponseBody extends TeaModel {
    @NameInMap("result")
    public GetAccountMappingResponseBodyResult result;

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

    public GetAccountMappingResponseBody setResult(GetAccountMappingResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public GetAccountMappingResponseBodyResult getResult() {
        return this.result;
    }

    public static class GetAccountMappingResponseBodyResult extends TeaModel {
        /**
         * 

This parameter is required.

* * example: *

BizName1

*/ @NameInMap("domain") public String domain; @NameInMap("extension") public java.util.Map extension; /** * example: *

o_123

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

t_123,如果不区分,填写固定值

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

This parameter is required.

* * example: *

id_123

*/ @NameInMap("userId") public String userId; public static GetAccountMappingResponseBodyResult build(java.util.Map map) throws Exception { GetAccountMappingResponseBodyResult self = new GetAccountMappingResponseBodyResult(); return TeaModel.build(map, self); } public GetAccountMappingResponseBodyResult setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public GetAccountMappingResponseBodyResult setExtension(java.util.Map extension) { this.extension = extension; return this; } public java.util.Map getExtension() { return this.extension; } public GetAccountMappingResponseBodyResult setOutId(String outId) { this.outId = outId; return this; } public String getOutId() { return this.outId; } public GetAccountMappingResponseBodyResult setOutTenantId(String outTenantId) { this.outTenantId = outTenantId; return this; } public String getOutTenantId() { return this.outTenantId; } public GetAccountMappingResponseBodyResult setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy