com.synopsys.integration.jira.common.model.components.UserDetailsComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of int-jira-common Show documentation
Show all versions of int-jira-common Show documentation
A library for using various capabilities of Jira.
/*
* int-jira-common
*
* Copyright (c) 2023 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.jira.common.model.components;
import com.synopsys.integration.rest.component.IntRestComponent;
public class UserDetailsComponent extends IntRestComponent {
private String self;
private String name;
private String key;
private String accountId;
private String emailAddress;
private AvatarUrlsComponent avatarUrls;
private String displayName;
private Boolean active;
private String timeZone;
private String accountType;
public UserDetailsComponent() {
}
public UserDetailsComponent(final String self, final String name, final String key, final String accountId, final String emailAddress, final AvatarUrlsComponent avatarUrls, final String displayName, final Boolean active,
final String timeZone, final String accountType) {
this.self = self;
this.name = name;
this.key = key;
this.accountId = accountId;
this.emailAddress = emailAddress;
this.avatarUrls = avatarUrls;
this.displayName = displayName;
this.active = active;
this.timeZone = timeZone;
this.accountType = accountType;
}
public String getSelf() {
return self;
}
public String getName() {
return name;
}
public String getKey() {
return key;
}
public String getAccountId() {
return accountId;
}
public String getEmailAddress() {
return emailAddress;
}
public AvatarUrlsComponent getAvatarUrls() {
return avatarUrls;
}
public String getDisplayName() {
return displayName;
}
public Boolean getActive() {
return active;
}
public String getTimeZone() {
return timeZone;
}
public String getAccountType() {
return accountType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy