amethyst/app/src/main/java/com/vitorpamplona/amethyst/service/model/LnZapEventInterface.kt

19 wiersze
341 B
Kotlin

package com.vitorpamplona.amethyst.service.model
import java.math.BigDecimal
interface LnZapEventInterface : EventInterface {
fun zappedPost(): List<String>
fun zappedPollOption(): Int?
fun zappedAuthor(): List<String>
fun taggedAddresses(): List<ATag>
fun amount(): BigDecimal?
fun containedPost(): Event?
}