in src/main/kotlin/org/jetbrains/teamcity/github/WebHookInfo.kt [57:66]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other?.javaClass != javaClass) return false
other as WebHookInfo
if (url != other.url) return false
if (callbackUrl != other.callbackUrl) return false
return true
}