Method: Akeyless::CreateTokenizer#==

Defined in:
lib/akeyless/models/create_tokenizer.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/akeyless/models/create_tokenizer.rb', line 244

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      alphabet == o.alphabet &&
      decoding_template == o.decoding_template &&
      delete_protection == o.delete_protection &&
      description == o.description &&
      encoding_template == o.encoding_template &&
      encryption_key_name == o.encryption_key_name &&
      json == o.json &&
       == o. &&
      name == o.name &&
      pattern == o.pattern &&
      tag == o.tag &&
      template_type == o.template_type &&
      token == o.token &&
      tokenizer_type == o.tokenizer_type &&
      tweak_type == o.tweak_type &&
      uid_token == o.uid_token
end