com.aliyun.dingtalkcontact_1_0.models.AddOrgAccountOwnnessRequest 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class AddOrgAccountOwnnessRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1698335999000
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* 2
*/
@NameInMap("ownenssType")
public Long ownenssType;
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("ownnessId")
public Long ownnessId;
/**
* This parameter is required.
*
* example:
* 1698335999000
*/
@NameInMap("startTime")
public Long startTime;
/**
* This parameter is required.
*
* example:
* 会议中
*/
@NameInMap("text")
public String text;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("userId")
public String userId;
public static AddOrgAccountOwnnessRequest build(java.util.Map map) throws Exception {
AddOrgAccountOwnnessRequest self = new AddOrgAccountOwnnessRequest();
return TeaModel.build(map, self);
}
public AddOrgAccountOwnnessRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public AddOrgAccountOwnnessRequest setOwnenssType(Long ownenssType) {
this.ownenssType = ownenssType;
return this;
}
public Long getOwnenssType() {
return this.ownenssType;
}
public AddOrgAccountOwnnessRequest setOwnnessId(Long ownnessId) {
this.ownnessId = ownnessId;
return this;
}
public Long getOwnnessId() {
return this.ownnessId;
}
public AddOrgAccountOwnnessRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public AddOrgAccountOwnnessRequest setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
public AddOrgAccountOwnnessRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}