/** * barkd REST API * A simple REST API for barkd, a wallet daemon for integrating bitcoin payments into your app over HTTP. Supports self-custodial Lightning, Ark, and on-chain out of the box. barkd is a long-running daemon best suited for always-on or high-connectivity environments like nodes, servers, desktops, and point-of-sale terminals. All endpoints return JSON. Amounts are denominated in satoshis. * * The version of the OpenAPI document: 0.6.1 * Contact: hello@second.tech * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TransactionInfo } from './TransactionInfo'; /** * Describes a completed transition of funds from onchain to offchain. * @export * @interface PendingBoardInfo */ export interface PendingBoardInfo { /** * The amount of the board. * @type {number} * @memberof PendingBoardInfo */ amountSat: number; /** * The funding transaction. * This is the transaction that has to be confirmed * onchain for the board to succeed. * @type {TransactionInfo} * @memberof PendingBoardInfo */ fundingTx: TransactionInfo; /** * The ID of the movement associated with this board. * @type {number} * @memberof PendingBoardInfo */ movementId: number; /** * The IDs of the VTXOs that were created * in this board. * * Currently, this is always a vector of length 1 * @type {Array} * @memberof PendingBoardInfo */ vtxos: Array; } /** * Check if a given object implements the PendingBoardInfo interface. */ export declare function instanceOfPendingBoardInfo(value: object): value is PendingBoardInfo; export declare function PendingBoardInfoFromJSON(json: any): PendingBoardInfo; export declare function PendingBoardInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PendingBoardInfo; export declare function PendingBoardInfoToJSON(json: any): PendingBoardInfo; export declare function PendingBoardInfoToJSONTyped(value?: PendingBoardInfo | null, ignoreDiscriminator?: boolean): any;