hashCode

open override fun hashCode(): Int(source)

Calculates the hash code for this object.

The hash code is calculated by combining the hash codes of the mediatorDid, holderDid, and routingDid properties. The algorithm used for the calculation is as follows:

  1. Get the hash code of the mediatorDid property.

  2. Multiply the hash code by 31 and add the hash code of the holderDid property.

  3. Multiply the result by 31 and add the hash code of the routingDid property.

  4. Return the final result.

Return

the hash code value for this object.