in src/main/java/com/uber/cadence/internal/replay/StartChildWorkflowExecutionParameters.java [282:301]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
StartChildWorkflowExecutionParameters that = (StartChildWorkflowExecutionParameters) o;
return executionStartToCloseTimeoutSeconds == that.executionStartToCloseTimeoutSeconds
&& taskStartToCloseTimeoutSeconds == that.taskStartToCloseTimeoutSeconds
&& Objects.equals(domain, that.domain)
&& Objects.equals(control, that.control)
&& Arrays.equals(input, that.input)
&& Objects.equals(taskList, that.taskList)
&& Objects.equals(workflowId, that.workflowId)
&& Objects.equals(workflowType, that.workflowType)
&& workflowIdReusePolicy == that.workflowIdReusePolicy
&& Objects.equals(retryParameters, that.retryParameters)
&& Objects.equals(cronSchedule, that.cronSchedule)
&& Objects.equals(memo, that.memo)
&& Objects.equals(searchAttributes, that.searchAttributes)
&& Objects.equals(context, that.context)
&& Objects.equals(parentClosePolicy, that.parentClosePolicy);
}