![JAR search and dependency download from the Maven repository](/logo.png)
com.ringcentral.definitions.TMMentionsInfo Maven / Gradle / Ivy
package com.ringcentral.definitions;
public class TMMentionsInfo {
/**
* Internal identifier of a user
*/
public String id;
/**
* Type of mention
* Enum: Person, Team, File, Link, Event, Task, Note, Card
*/
public String type;
/**
* Name of a user
*/
public String name;
public TMMentionsInfo id(String id) {
this.id = id;
return this;
}
public TMMentionsInfo type(String type) {
this.type = type;
return this;
}
public TMMentionsInfo name(String name) {
this.name = name;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy