com.aliyun.dingtalkindustry_1_0.models.SupplyGetMemberRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class SupplyGetMemberRequest extends TeaModel {
/**
* example:
* 19912345678
*/
@NameInMap("mobile")
public String mobile;
@NameInMap("unionId")
public String unionId;
@NameInMap("userId")
public String userId;
public static SupplyGetMemberRequest build(java.util.Map map) throws Exception {
SupplyGetMemberRequest self = new SupplyGetMemberRequest();
return TeaModel.build(map, self);
}
public SupplyGetMemberRequest setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public SupplyGetMemberRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public SupplyGetMemberRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}