
com.aliyun.dingtalkokr_1_0.models.TitleMention Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkokr_1_0.models;
import com.aliyun.tea.*;
public class TitleMention extends TeaModel {
/**
* example:
* 20
*/
@NameInMap("length")
public Long length;
/**
* example:
* 1
*/
@NameInMap("offset")
public Long offset;
@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(Long length) {
this.length = length;
return this;
}
public Long getLength() {
return this.length;
}
public TitleMention setOffset(Long offset) {
this.offset = offset;
return this;
}
public Long getOffset() {
return this.offset;
}
public TitleMention setUser(OpenUserDTO user) {
this.user = user;
return this;
}
public OpenUserDTO getUser() {
return this.user;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy