twitter4jads.models.ads.UserMentionEntity Maven / Gradle / Ivy
The newest version!
package twitter4jads.models.ads;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import java.util.List;
public class UserMentionEntity implements Serializable {
@SerializedName("id")
private Long id;
@SerializedName("id_str")
private String idString;
@SerializedName("indices")
private List indices;
@SerializedName("name")
private String name;
@SerializedName("screen_name")
private String screenName;
}