/** * 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 { RoundStatus } from './RoundStatus'; import type { RoundParticipationInfo } from './RoundParticipationInfo'; /** * * @export * @interface PendingRoundInfo */ export interface PendingRoundInfo { /** * * @type {string} * @memberof PendingRoundInfo */ fundingTxHex?: string | null; /** * The round transaction id, if already assigned * @type {string} * @memberof PendingRoundInfo */ fundingTxid: string | null; /** * Unique identifier for the round * @type {number} * @memberof PendingRoundInfo */ id: number; /** * the round participation details * @type {RoundParticipationInfo} * @memberof PendingRoundInfo */ participation: RoundParticipationInfo; /** * the current status of the round * @type {RoundStatus} * @memberof PendingRoundInfo */ status: RoundStatus; /** * * @type {string} * @memberof PendingRoundInfo */ unlockHash: string | null; } /** * Check if a given object implements the PendingRoundInfo interface. */ export declare function instanceOfPendingRoundInfo(value: object): value is PendingRoundInfo; export declare function PendingRoundInfoFromJSON(json: any): PendingRoundInfo; export declare function PendingRoundInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PendingRoundInfo; export declare function PendingRoundInfoToJSON(json: any): PendingRoundInfo; export declare function PendingRoundInfoToJSONTyped(value?: PendingRoundInfo | null, ignoreDiscriminator?: boolean): any;