mirror of
https://github.com/edouardparis/lntop
synced 2024-11-13 13:10:34 +00:00
15 lines
275 B
Go
15 lines
275 B
Go
package models
|
|
|
|
type PayReq struct {
|
|
Destination string
|
|
PaymentHash string
|
|
Amount int64
|
|
Timestamp int64
|
|
Expiry int64
|
|
Description string
|
|
DescriptionHash string
|
|
FallbackAddr string
|
|
CltvExpiry int64
|
|
String string
|
|
}
|