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

ch.viascom.hipchat.api.models.Member Maven / Gradle / Ivy

There is a newer version: 2.1-RC3
Show newest version
package ch.viascom.hipchat.api.models;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.io.Serializable;

/**
 * Created by patrickboesch on 12.04.16.
 */
@Data
public class Member implements Serializable {
    /**
     * User's @mention name
     */
    @SerializedName("mention_name")
    private String mentionName;

    /**
     * An etag-like random version string.
     */
    private String version;

    /**
     * User's ID
     */
    private int id;

    /**
     * User's full name
     */
    private String name;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy