com.aliyun.dingtalkchengfeng_1_0.models.TitleMention 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class TitleMention extends TeaModel {
/**
* This parameter is required.
*
* example:
* 22
*/
@NameInMap("length")
public Integer length;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("offset")
public Integer offset;
/**
* This parameter is required.
*/
@NameInMap("user")
public OpenUserDTO user;
public static TitleMention build(java.util.Map map) throws Exception {
TitleMention self = new TitleMention();
return TeaModel.build(map, self);
}
public TitleMention setLength(Integer length) {
this.length = length;
return this;
}
public Integer getLength() {
return this.length;
}
public TitleMention setOffset(Integer offset) {
this.offset = offset;
return this;
}
public Integer getOffset() {
return this.offset;
}
public TitleMention setUser(OpenUserDTO user) {
this.user = user;
return this;
}
public OpenUserDTO getUser() {
return this.user;
}
}