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

com.aliyun.dingtalkcontact_1_0.models.GetAccountMappingRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class GetAccountMappingRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

BizName1

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

This parameter is required.

* * example: *

id_123

*/ @NameInMap("userId") public String userId; public static GetAccountMappingRequest build(java.util.Map map) throws Exception { GetAccountMappingRequest self = new GetAccountMappingRequest(); return TeaModel.build(map, self); } public GetAccountMappingRequest setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public GetAccountMappingRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy