/** * 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 { RoundStatusOneOf } from './RoundStatusOneOf'; import type { RoundStatusOneOf1 } from './RoundStatusOneOf1'; import type { RoundStatusOneOf2 } from './RoundStatusOneOf2'; import type { RoundStatusOneOf3 } from './RoundStatusOneOf3'; import type { RoundStatusOneOf4 } from './RoundStatusOneOf4'; import type { RoundStatusOneOf5 } from './RoundStatusOneOf5'; /** * @type RoundStatus * * @export */ export type RoundStatus = RoundStatusOneOf | RoundStatusOneOf1 | RoundStatusOneOf2 | RoundStatusOneOf3 | RoundStatusOneOf4 | RoundStatusOneOf5; export declare function RoundStatusFromJSON(json: any): RoundStatus; export declare function RoundStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoundStatus; export declare function RoundStatusToJSON(json: any): any; export declare function RoundStatusToJSONTyped(value?: RoundStatus | null, ignoreDiscriminator?: boolean): any;