org.symphonyoss.symphony.agent.model.V4User Maven / Gradle / Ivy
The newest version!
/*
* Agent API
* This document refers to Symphony API calls to send and receive messages and content. They need the on-premise Agent installed to perform decryption/encryption of content. - sessionToken and keyManagerToken can be obtained by calling the authenticationAPI on the symphony back end and the key manager respectively. Refer to the methods described in authenticatorAPI.yaml. - Actions are defined to be atomic, ie will succeed in their entirety or fail and have changed nothing. - If it returns a 40X status then it will have sent no message to any stream even if a request to aome subset of the requested streams would have succeeded. - If this contract cannot be met for any reason then this is an error and the response code will be 50X. - MessageML is a markup language for messages. See reference here: https://developers.symphony.com/documentation/message_format_reference
*
* OpenAPI spec version: 1.50.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package org.symphonyoss.symphony.agent.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* V4User
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-13T13:44:51.568-04:00")
public class V4User {
@JsonProperty("userId")
private Long userId = null;
@JsonProperty("firstName")
private String firstName = null;
@JsonProperty("lastName")
private String lastName = null;
@JsonProperty("displayName")
private String displayName = null;
@JsonProperty("email")
private String email = null;
@JsonProperty("username")
private String username = null;
public V4User userId(Long userId) {
this.userId = userId;
return this;
}
/**
* Id of user
* @return userId
**/
@ApiModelProperty(value = "Id of user")
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public V4User firstName(String firstName) {
this.firstName = firstName;
return this;
}
/**
* First name of user
* @return firstName
**/
@ApiModelProperty(value = "First name of user")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public V4User lastName(String lastName) {
this.lastName = lastName;
return this;
}
/**
* Last name of user
* @return lastName
**/
@ApiModelProperty(value = "Last name of user")
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public V4User displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* User display name
* @return displayName
**/
@ApiModelProperty(value = "User display name")
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public V4User email(String email) {
this.email = email;
return this;
}
/**
* Email of user
* @return email
**/
@ApiModelProperty(value = "Email of user")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public V4User username(String username) {
this.username = username;
return this;
}
/**
* Applicable only to internal users
* @return username
**/
@ApiModelProperty(value = "Applicable only to internal users")
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V4User v4User = (V4User) o;
return Objects.equals(this.userId, v4User.userId) &&
Objects.equals(this.firstName, v4User.firstName) &&
Objects.equals(this.lastName, v4User.lastName) &&
Objects.equals(this.displayName, v4User.displayName) &&
Objects.equals(this.email, v4User.email) &&
Objects.equals(this.username, v4User.username);
}
@Override
public int hashCode() {
return Objects.hash(userId, firstName, lastName, displayName, email, username);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V4User {\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n");
sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" username: ").append(toIndentedString(username)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}