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

org.finra.herd.sdk.model.BusinessObjectDataStatusChangeEvent Maven / Gradle / Ivy

There is a newer version: 0.160.0
Show newest version
/*
 * herd-external
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: 0.125.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package org.finra.herd.sdk.model;

import java.util.Objects;
import java.util.Arrays;
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;
import org.joda.time.DateTime;

/**
 * BusinessObjectDataStatusChangeEvent
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class BusinessObjectDataStatusChangeEvent {
  @JsonProperty("status")
  private String status = null;

  @JsonProperty("eventTime")
  private DateTime eventTime = null;

  @JsonProperty("userId")
  private String userId = null;

  public BusinessObjectDataStatusChangeEvent status(String status) {
    this.status = status;
    return this;
  }

   /**
   * The status of the Business Object Data
   * @return status
  **/
  @ApiModelProperty(required = true, value = "The status of the Business Object Data")
  public String getStatus() {
    return status;
  }

  public void setStatus(String status) {
    this.status = status;
  }

  public BusinessObjectDataStatusChangeEvent eventTime(DateTime eventTime) {
    this.eventTime = eventTime;
    return this;
  }

   /**
   * The timestamp of when the business object data status change occurred
   * @return eventTime
  **/
  @ApiModelProperty(required = true, value = "The timestamp of when the business object data status change occurred")
  public DateTime getEventTime() {
    return eventTime;
  }

  public void setEventTime(DateTime eventTime) {
    this.eventTime = eventTime;
  }

  public BusinessObjectDataStatusChangeEvent userId(String userId) {
    this.userId = userId;
    return this;
  }

   /**
   * The User ID of the user who performed status update or registration of the Business Object Data
   * @return userId
  **/
  @ApiModelProperty(required = true, value = "The User ID of the user who performed status update or registration of the Business Object Data")
  public String getUserId() {
    return userId;
  }

  public void setUserId(String userId) {
    this.userId = userId;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    BusinessObjectDataStatusChangeEvent businessObjectDataStatusChangeEvent = (BusinessObjectDataStatusChangeEvent) o;
    return Objects.equals(this.status, businessObjectDataStatusChangeEvent.status) &&
        Objects.equals(this.eventTime, businessObjectDataStatusChangeEvent.eventTime) &&
        Objects.equals(this.userId, businessObjectDataStatusChangeEvent.userId);
  }

  @Override
  public int hashCode() {
    return Objects.hash(status, eventTime, userId);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class BusinessObjectDataStatusChangeEvent {\n");
    
    sb.append("    status: ").append(toIndentedString(status)).append("\n");
    sb.append("    eventTime: ").append(toIndentedString(eventTime)).append("\n");
    sb.append("    userId: ").append(toIndentedString(userId)).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    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy