public boolean equals()

in sdk/greengrass/greengrass-client/src/event-stream-rpc-java/model/software/amazon/awssdk/aws/greengrass/model/DeploymentStatusDetails.java [194:205]


  public boolean equals(Object rhs) {
    if (rhs == null) return false;
    if (!(rhs instanceof DeploymentStatusDetails)) return false;
    if (this == rhs) return true;
    final DeploymentStatusDetails other = (DeploymentStatusDetails)rhs;
    boolean isEquals = true;
    isEquals = isEquals && this.detailedDeploymentStatus.equals(other.detailedDeploymentStatus);
    isEquals = isEquals && this.deploymentErrorStack.equals(other.deploymentErrorStack);
    isEquals = isEquals && this.deploymentErrorTypes.equals(other.deploymentErrorTypes);
    isEquals = isEquals && this.deploymentFailureCause.equals(other.deploymentFailureCause);
    return isEquals;
  }