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