override fun equals()

in facebook-core/src/main/java/com/facebook/AuthenticationTokenClaims.kt [333:360]


  override fun equals(other: Any?): Boolean {
    if (this === other) {
      return true
    }
    if (other !is AuthenticationTokenClaims) {
      return false
    }
    return jti == other.jti &&
        iss == other.iss &&
        aud == other.aud &&
        nonce == other.nonce &&
        exp == other.exp &&
        iat == other.iat &&
        sub == other.sub &&
        name == other.name &&
        givenName == other.givenName &&
        middleName == other.middleName &&
        familyName == other.familyName &&
        email == other.email &&
        picture == other.picture &&
        userFriends == other.userFriends &&
        userBirthday == other.userBirthday &&
        userAgeRange == other.userAgeRange &&
        userHometown == other.userHometown &&
        userLocation == other.userLocation &&
        userGender == other.userGender &&
        userLink == other.userLink
  }