i think this should be better ``` interface CicloE...
# getting-started
e
i think this should be better
Copy code
interface CicloEvent  {
    val cycleId : Long
}

class Payment(cycleId:Long) : CicloEvent {
    override val cycleId: Long = cycleId
}