org.qas.qtest.api.services.user.model.UserProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.qtest.api.services.user.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.qas.qtest.api.internal.model.QTestBaseModel;
import java.util.List;
/**
* @author trongle
* @version $Id 5/5/2017 5:17 PM
*/
public class UserProfile extends QTestBaseModel{
@JsonProperty("total_user_profiles")
private int totalUserProfiles;
@JsonProperty("total_admin_profiles")
private int totalAdminProfiles;
@JsonProperty("user_profiles")
private List userProfiles;
@JsonProperty("admin_profiles")
private List adminProfiles;
public int getTotalUserProfiles() {
return totalUserProfiles;
}
public UserProfile setTotalUserProfiles(int totalUserProfiles) {
this.totalUserProfiles = totalUserProfiles;
return this;
}
public int getTotalAdminProfiles() {
return totalAdminProfiles;
}
public UserProfile setTotalAdminProfiles(int totalAdminProfiles) {
this.totalAdminProfiles = totalAdminProfiles;
return this;
}
public List getUserProfiles() {
return userProfiles;
}
public UserProfile setUserProfiles(List userProfiles) {
this.userProfiles = userProfiles;
return this;
}
public List getAdminProfiles() {
return adminProfiles;
}
public UserProfile setAdminProfiles(List adminProfiles) {
this.adminProfiles = adminProfiles;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy