com.aliyun.dingtalkim_1_0.models.CreateInterconnectionRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class CreateInterconnectionRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("interconnections")
public java.util.List interconnections;
public static CreateInterconnectionRequest build(java.util.Map map) throws Exception {
CreateInterconnectionRequest self = new CreateInterconnectionRequest();
return TeaModel.build(map, self);
}
public CreateInterconnectionRequest setInterconnections(java.util.List interconnections) {
this.interconnections = interconnections;
return this;
}
public java.util.List getInterconnections() {
return this.interconnections;
}
public static class CreateInterconnectionRequestInterconnections extends TeaModel {
/**
* example:
* http://***.png
*/
@NameInMap("appUserAvatar")
public String appUserAvatar;
/**
* example:
* 1
*/
@NameInMap("appUserAvatarMediaType")
public Integer appUserAvatarMediaType;
/**
* example:
* 认真工作,快乐生活
*/
@NameInMap("appUserDynamics")
public String appUserDynamics;
/**
* This parameter is required.
*
* example:
* 1107****2120
*/
@NameInMap("appUserId")
public String appUserId;
/**
* This parameter is required.
*
* example:
* 188****8655
*/
@NameInMap("appUserMobile")
public String appUserMobile;
/**
* This parameter is required.
*
* example:
* Foo
*/
@NameInMap("appUserName")
public String appUserName;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("channelCode")
public String channelCode;
/**
* example:
* 1745****8777
*/
@NameInMap("userId")
public String userId;
public static CreateInterconnectionRequestInterconnections build(java.util.Map map) throws Exception {
CreateInterconnectionRequestInterconnections self = new CreateInterconnectionRequestInterconnections();
return TeaModel.build(map, self);
}
public CreateInterconnectionRequestInterconnections setAppUserAvatar(String appUserAvatar) {
this.appUserAvatar = appUserAvatar;
return this;
}
public String getAppUserAvatar() {
return this.appUserAvatar;
}
public CreateInterconnectionRequestInterconnections setAppUserAvatarMediaType(Integer appUserAvatarMediaType) {
this.appUserAvatarMediaType = appUserAvatarMediaType;
return this;
}
public Integer getAppUserAvatarMediaType() {
return this.appUserAvatarMediaType;
}
public CreateInterconnectionRequestInterconnections setAppUserDynamics(String appUserDynamics) {
this.appUserDynamics = appUserDynamics;
return this;
}
public String getAppUserDynamics() {
return this.appUserDynamics;
}
public CreateInterconnectionRequestInterconnections setAppUserId(String appUserId) {
this.appUserId = appUserId;
return this;
}
public String getAppUserId() {
return this.appUserId;
}
public CreateInterconnectionRequestInterconnections setAppUserMobile(String appUserMobile) {
this.appUserMobile = appUserMobile;
return this;
}
public String getAppUserMobile() {
return this.appUserMobile;
}
public CreateInterconnectionRequestInterconnections setAppUserName(String appUserName) {
this.appUserName = appUserName;
return this;
}
public String getAppUserName() {
return this.appUserName;
}
public CreateInterconnectionRequestInterconnections setChannelCode(String channelCode) {
this.channelCode = channelCode;
return this;
}
public String getChannelCode() {
return this.channelCode;
}
public CreateInterconnectionRequestInterconnections setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}