Method: PulpcoreClient::TaskScheduleResponse#==

Defined in:
lib/pulpcore_client/models/task_schedule_response.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.



173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/pulpcore_client/models/task_schedule_response.rb', line 173

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      pulp_href == o.pulp_href &&
      prn == o.prn &&
      pulp_created == o.pulp_created &&
      pulp_last_updated == o.pulp_last_updated &&
      name == o.name &&
      task_name == o.task_name &&
      dispatch_interval == o.dispatch_interval &&
      next_dispatch == o.next_dispatch &&
      last_task == o.last_task
end