mirror of
https://github.com/edouardparis/lntop
synced 2024-11-16 00:12:44 +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
|
||
|
}
|