Method: CloudsmithApi::NugetUpstreamRequestPatch#==
- Defined in:
- lib/cloudsmith-api/models/nuget_upstream_request_patch.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/cloudsmith-api/models/nuget_upstream_request_patch.rb', line 220 def ==(o) return true if self.equal?(o) self.class == o.class && auth_mode == o.auth_mode && auth_secret == o.auth_secret && auth_username == o.auth_username && extra_header_1 == o.extra_header_1 && extra_header_2 == o.extra_header_2 && extra_value_1 == o.extra_value_1 && extra_value_2 == o.extra_value_2 && is_active == o.is_active && mode == o.mode && name == o.name && priority == o.priority && upstream_url == o.upstream_url && verify_ssl == o.verify_ssl end |