mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
39 lines
616 B
Go
39 lines
616 B
Go
|
|
// Code generated by sqlc. DO NOT EDIT.
|
||
|
|
// versions:
|
||
|
|
// sqlc v1.25.0
|
||
|
|
|
||
|
|
package sqlc
|
||
|
|
|
||
|
|
import (
|
||
|
|
"database/sql"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Account struct {
|
||
|
|
ID int64
|
||
|
|
Alias int64
|
||
|
|
Label sql.NullString
|
||
|
|
Type int16
|
||
|
|
InitialBalanceMsat int64
|
||
|
|
CurrentBalanceMsat int64
|
||
|
|
LastUpdated time.Time
|
||
|
|
Expiration time.Time
|
||
|
|
}
|
||
|
|
|
||
|
|
type AccountIndex struct {
|
||
|
|
Name string
|
||
|
|
Value int64
|
||
|
|
}
|
||
|
|
|
||
|
|
type AccountInvoice struct {
|
||
|
|
AccountID int64
|
||
|
|
Hash []byte
|
||
|
|
}
|
||
|
|
|
||
|
|
type AccountPayment struct {
|
||
|
|
AccountID int64
|
||
|
|
Hash []byte
|
||
|
|
Status int16
|
||
|
|
FullAmountMsat int64
|
||
|
|
}
|