/** * 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 { ExitTxOrigin } from './ExitTxOrigin'; /** * * @export * @interface ExitTxStatusOneOf3 */ export interface ExitTxStatusOneOf3 { /** * * @type {string} * @memberof ExitTxStatusOneOf3 */ childTxid: string; /** * * @type {ExitTxOrigin} * @memberof ExitTxStatusOneOf3 */ origin: ExitTxOrigin; /** * * @type {ExitTxStatusOneOf3TypeEnum} * @memberof ExitTxStatusOneOf3 */ type: ExitTxStatusOneOf3TypeEnum; } /** * @export */ export declare const ExitTxStatusOneOf3TypeEnum: { readonly AwaitingConfirmation: "awaiting-confirmation"; }; export type ExitTxStatusOneOf3TypeEnum = typeof ExitTxStatusOneOf3TypeEnum[keyof typeof ExitTxStatusOneOf3TypeEnum]; /** * Check if a given object implements the ExitTxStatusOneOf3 interface. */ export declare function instanceOfExitTxStatusOneOf3(value: object): value is ExitTxStatusOneOf3; export declare function ExitTxStatusOneOf3FromJSON(json: any): ExitTxStatusOneOf3; export declare function ExitTxStatusOneOf3FromJSONTyped(json: any, ignoreDiscriminator: boolean): ExitTxStatusOneOf3; export declare function ExitTxStatusOneOf3ToJSON(json: any): ExitTxStatusOneOf3; export declare function ExitTxStatusOneOf3ToJSONTyped(value?: ExitTxStatusOneOf3 | null, ignoreDiscriminator?: boolean): any;