Method: Akeyless::NotiForwarder#==
- Defined in:
- lib/akeyless/models/noti_forwarder.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
# File 'lib/akeyless/models/noti_forwarder.rb', line 242 def ==(o) return true if self.equal?(o) self.class == o.class && == o. && comment == o.comment && creation_date == o.creation_date && endpoint == o.endpoint && event_types == o.event_types && gateway_cluster_id == o.gateway_cluster_id && is_enabled == o.is_enabled && last_version == o.last_version && modification_date == o.modification_date && noti_forwarder_id == o.noti_forwarder_id && noti_forwarder_name == o.noti_forwarder_name && noti_forwarder_type == o.noti_forwarder_type && noti_forwarder_versions == o.noti_forwarder_versions && paths == o.paths && protection_key == o.protection_key && runner_type == o.runner_type && timespan_in_seconds == o.timespan_in_seconds && to_emails == o.to_emails && username == o.username && with_customer_fragment == o.with_customer_fragment end |