/** * 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 { ExitTxStatusOneOf } from './ExitTxStatusOneOf'; import type { ExitTxStatusOneOf1 } from './ExitTxStatusOneOf1'; import type { ExitTxStatusOneOf2 } from './ExitTxStatusOneOf2'; import type { ExitTxStatusOneOf3 } from './ExitTxStatusOneOf3'; import type { ExitTxStatusOneOf4 } from './ExitTxStatusOneOf4'; /** * @type ExitTxStatus * * @export */ export type ExitTxStatus = ExitTxStatusOneOf | ExitTxStatusOneOf1 | ExitTxStatusOneOf2 | ExitTxStatusOneOf3 | ExitTxStatusOneOf4; export declare function ExitTxStatusFromJSON(json: any): ExitTxStatus; export declare function ExitTxStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExitTxStatus; export declare function ExitTxStatusToJSON(json: any): any; export declare function ExitTxStatusToJSONTyped(value?: ExitTxStatus | null, ignoreDiscriminator?: boolean): any;