Method: Akeyless::SalesforceTargetDetails#==
- Defined in:
- lib/akeyless/models/salesforce_target_details.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/akeyless/models/salesforce_target_details.rb', line 163 def ==(o) return true if self.equal?(o) self.class == o.class && app_private_key == o.app_private_key && auth_flow == o.auth_flow && ca_cert_data == o.ca_cert_data && ca_cert_name == o.ca_cert_name && client_id == o.client_id && client_secret == o.client_secret && password == o.password && security_token == o.security_token && tenant_url == o.tenant_url && user_name == o.user_name end |