
com.aliyun.dingtalkcrm_1_0.models.GetOfficialAccountContactInfoResponseBody Maven / Gradle / Ivy
// 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;
/**
* example:
* 阿里巴巴钉钉
*/
@NameInMap("corpName")
public String corpName;
/**
* example:
* 18812341234
*/
@NameInMap("mobile")
public String mobile;
/**
* example:
* +86
*/
@NameInMap("stateCode")
public String stateCode;
/**
* example:
* 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 - 2025 Weber Informatics LLC | Privacy Policy