com.rmn.testrail.entity.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testrailsdk Show documentation
Show all versions of testrailsdk Show documentation
A package for managing your TestRail information
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