Part
data class Part(id: UUID, amount: MilliSatoshi, route: List<HopDesc>, status: OutgoingPayment.Part.Status, createdAt: Long)
Content copied to clipboard
An child payment sent by this node (partial payment of the total amount).
Parameters
id
internal payment identifier.
amount
amount sent, including fees.
route
payment route used.
status
current status of the payment.
created At
absolute time in milliseconds since UNIX epoch when the payment was created.
Constructors
Part
Link copied to clipboard
fun Part(id: UUID, amount: MilliSatoshi, route: List<HopDesc>, status: OutgoingPayment.Part.Status, createdAt: Long = currentTimestampMillis())
Content copied to clipboard