12 lines
302 B
Go
12 lines
302 B
Go
package model
|
|
|
|
import moneyv1 "github.com/tech/sendico/pkg/proto/common/money/v1"
|
|
|
|
// DepositCheckPolicy defines how an external deposit satisfies pre-funding.
|
|
type DepositCheckPolicy struct {
|
|
WalletRef string
|
|
ExpectedAmount *moneyv1.Money
|
|
MinConfirmations uint32
|
|
TimeoutSeconds int64
|
|
}
|