Method: Harbor2LegacyClient::ReplicationExecution#==

Defined in:
lib/harbor2_legacy_client/models/replication_execution.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/harbor2_legacy_client/models/replication_execution.rb', line 162

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      policy_id == o.policy_id &&
      status == o.status &&
      status_text == o.status_text &&
      trigger == o.trigger &&
      total == o.total &&
      failed == o.failed &&
      succeed == o.succeed &&
      in_progress == o.in_progress &&
      stopped == o.stopped &&
      start_time == o.start_time &&
      end_time == o.end_time
end