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

com.aliyun.dingtalkcrm_1_0.models.GetOfficialAccountContactInfoResponseBody 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.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class GetOfficialAccountContactInfoResponseBody extends TeaModel {
    // 已授权的字段
    @NameInMap("authItems")
    public java.util.List authItems;

    // 联系人主企业名称
    @NameInMap("corpName")
    public String corpName;

    // 手机号
    @NameInMap("mobile")
    public String mobile;

    // 手机号国家码
    @NameInMap("stateCode")
    public String stateCode;

    // 联系人的unionId
    @NameInMap("unionId")
    public String unionId;

    // 已授权的字段
    @NameInMap("userInfos")
    public java.util.List userInfos;

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

    public GetOfficialAccountContactInfoResponseBody setAuthItems(java.util.List authItems) {
        this.authItems = authItems;
        return this;
    }
    public java.util.List getAuthItems() {
        return this.authItems;
    }

    public GetOfficialAccountContactInfoResponseBody setCorpName(String corpName) {
        this.corpName = corpName;
        return this;
    }
    public String getCorpName() {
        return this.corpName;
    }

    public GetOfficialAccountContactInfoResponseBody setMobile(String mobile) {
        this.mobile = mobile;
        return this;
    }
    public String getMobile() {
        return this.mobile;
    }

    public GetOfficialAccountContactInfoResponseBody setStateCode(String stateCode) {
        this.stateCode = stateCode;
        return this;
    }
    public String getStateCode() {
        return this.stateCode;
    }

    public GetOfficialAccountContactInfoResponseBody setUnionId(String unionId) {
        this.unionId = unionId;
        return this;
    }
    public String getUnionId() {
        return this.unionId;
    }

    public GetOfficialAccountContactInfoResponseBody setUserInfos(java.util.List userInfos) {
        this.userInfos = userInfos;
        return this;
    }
    public java.util.List getUserInfos() {
        return this.userInfos;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy