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

com.rmn.testrail.entity.User Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.rmn.testrail.entity;

import org.codehaus.jackson.annotate.JsonProperty;

/**
 * @author mmerrell
 */
public class User extends BaseEntity {
    @JsonProperty("id")
    private Integer id;
    public Integer getId() { return id; }
    public void setId(Integer id) { this.id = id; }

    @JsonProperty("name")
    private String name;
    public String getName() { return name; }
    public void setName(String name) { this.name = name; }

    @JsonProperty("email")
    private String email;
    public String getEmail() { return email; }
    public void setEmail(String email) { this.email = email; }

    @JsonProperty("is_active")
    private boolean is_active;
    public boolean isActive() { return is_active; }
    public void setIsActive(boolean is_active) { this.is_active = is_active; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy