kin-android / kin.sdk / PaymentInfo
interface PaymentInfo
Represents payment issued on the blockchain.
| Name | Summary |
|---|---|
| amount | Payment amount in kin.abstract fun amount(): BigDecimal |
| createdAt | Transaction creation time.abstract fun createdAt(): String |
| destinationPublicKey | Destination account public id.abstract fun destinationPublicKey(): String |
| fee | Amount of fee(in stroops) for this payment.abstract fun fee(): Long |
| hash | Transaction id (hash).abstract fun hash(): TransactionId |
| memo | An optional string, up-to 28 characters, included on the transaction record.abstract fun memo(): String |
| sourcePublicKey | Source account public id.abstract fun sourcePublicKey(): String |
| Name | Summary |
|---|---|
| PaymentInfoImpl | data class PaymentInfoImpl : PaymentInfo |