have the following problem, interface has the same...
# getting-started
d
have the following problem, interface has the same method as the property-get method of class.
Copy code
class Payment(val cycleId: Long) : CicloEvent {
    
    override fun getCycleId(): Long {
        return cycleId
    }
}
Copy code
interface CicloEvent : Event {
    fun getCycleId() : Long
}
I'm getting the error, platform declaration clash, same jvm signature for both methods