All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkagoal_1_0.models.TitleMention Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkagoal_1_0.models;

import com.aliyun.tea.*;

public class TitleMention extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

10

*/ @NameInMap("length") public Integer length; /** *

This parameter is required.

* * example: *

0

*/ @NameInMap("offset") public Integer offset; /** *

This parameter is required.

*/ @NameInMap("user") public OpenAgoalUserDTO 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(OpenAgoalUserDTO user) { this.user = user; return this; } public OpenAgoalUserDTO getUser() { return this.user; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy